Skip to content

Commit 1208dfe

Browse files
committed
formatting
1 parent 20b6a9e commit 1208dfe

File tree

2 files changed

+48
-53
lines changed

2 files changed

+48
-53
lines changed

docs/articles/plugin-hydrolix-traffic-peak.md

+44-52
Original file line numberDiff line numberDiff line change
@@ -18,58 +18,50 @@ file `zuplo.runtime.ts`:
1818

1919
This logger includes a default type and function that logs the following fields:
2020

21-
- **deploymentName** <code className="text-green-600">&lt;string&gt;</code> -
22-
The name of the deployment.
23-
- **timestamp** <code className="text-green-600">&lt;string&gt;</code> - The
24-
time the log was created.
25-
- **requestId** <code className="text-green-600">&lt;string&gt;</code> - The
26-
UUID of the request (the value of the `zp-rid` header).
27-
- **routePath** <code className="text-green-600">&lt;string&gt;</code> - The
28-
path of the route.
29-
- **operationId** <code className="text-green-600">&lt;string |
30-
undefined&gt;</code> - The operation ID.
31-
- **url** <code className="text-green-600">&lt;string | undefined&gt;</code> -
32-
The URL of the request.
33-
- **statusCode** <code className="text-green-600">&lt;number |
34-
undefined&gt;</code> - The status code of the response.
35-
- **durationMs** <code className="text-green-600">&lt;number |
36-
undefined&gt;</code> - The duration of the request in milliseconds.
37-
- **method** <code className="text-green-600">&lt;string&gt;</code> - The HTTP
38-
method of the request.
39-
- **userSub** <code className="text-green-600">&lt;string |
40-
undefined&gt;</code> - The user sub.
41-
- **instanceId** <code className="text-green-600">&lt;string |
42-
undefined&gt;</code> - The instance ID.
43-
- **colo** <code className="text-green-600">&lt;string | undefined&gt;</code> -
44-
The colo (datacenter) of the request.
45-
- **city** <code className="text-green-600">&lt;string | undefined&gt;</code> -
46-
The city the request origin.
47-
- **country** <code className="text-green-600">&lt;string |
48-
undefined&gt;</code> - The country the request origin.
49-
- **continent** <code className="text-green-600">&lt;string |
50-
undefined&gt;</code> - The continent the request origin.
51-
- **latitude** <code className="text-green-600">&lt;string |
52-
undefined&gt;</code> - The latitude of the request origin.
53-
- **longitude** <code className="text-green-600">&lt;string |
54-
undefined&gt;</code> - The longitude of the request origin.
55-
- **postalCode** <code className="text-green-600">&lt;string |
56-
undefined&gt;</code> - The postal code of the request origin.
57-
- **metroCode** <code className="text-green-600">&lt;string |
58-
undefined&gt;</code> - The metro code of the request origin.
59-
- **region** <code className="text-green-600">&lt;string |
60-
undefined&gt;</code> - The region of the request origin.
61-
- **regionCode** <code className="text-green-600">&lt;string |
62-
undefined&gt;</code> - The region code of the request origin.
63-
- **timezone** <code className="text-green-600">&lt;string |
64-
undefined&gt;</code> - The timezone of the request origin.
65-
- **asn** <code className="text-green-600">&lt;string | undefined&gt;</code> -
66-
The ASN of the request origin.
67-
- **asOrganization** <code className="text-green-600">&lt;string |
68-
undefined&gt;</code> - The AS organization of the request origin.
69-
- **clientIP** <code className="text-green-600">&lt;string |
70-
undefined&gt;</code> - The client IP of the requestor.
71-
- **zuploUserAgent** <code className="text-green-600">&lt;string |
72-
undefined&gt;</code> - The Zuplo user agent.
21+
- **deploymentName** <CodeType>string</CodeType> - The name of the deployment.
22+
- **timestamp** <CodeType>string</CodeType> - The time the log was created.
23+
- **requestId** <CodeType>string</CodeType> - The UUID of the request (the value
24+
of the `zp-rid` header).
25+
- **routePath** <CodeType>string</CodeType> - The path of the route.
26+
- **operationId** <CodeType>string | undefined</CodeType> - The operation ID.
27+
- **url** <CodeType>string | undefined</CodeType> - The URL of the request.
28+
- **statusCode** <CodeType>number | undefined</CodeType> - The status code of
29+
the response.
30+
- **durationMs** <CodeType>number | undefined</CodeType> - The duration of the
31+
request in milliseconds.
32+
- **method** <CodeType>string</CodeType> - The HTTP method of the request.
33+
- **userSub** <CodeType>string | undefined</CodeType> - The user sub.
34+
- **instanceId** <CodeType>string | undefined</CodeType> - The instance ID.
35+
- **colo** <CodeType>string | undefined</CodeType> - The colo (datacenter) of
36+
the request.
37+
- **city** <CodeType>string | undefined</CodeType> - The city the request
38+
origin.
39+
- **country** <CodeType>string | undefined</CodeType> - The country the request
40+
origin.
41+
- **continent** <CodeType>string | undefined</CodeType> - The continent the
42+
request origin.
43+
- **latitude** <CodeType>string | undefined</CodeType> - The latitude of the
44+
request origin.
45+
- **longitude** <CodeType>string | undefined</CodeType> - The longitude of the
46+
request origin.
47+
- **postalCode** <CodeType>string | undefined</CodeType> - The postal code of
48+
the request origin.
49+
- **metroCode** <CodeType>string | undefined</CodeType> - The metro code of the
50+
request origin.
51+
- **region** <CodeType>string | undefined</CodeType> - The region of the request
52+
origin.
53+
- **regionCode** <CodeType>string | undefined</CodeType> - The region code of
54+
the request origin.
55+
- **timezone** <CodeType>string | undefined</CodeType> - The timezone of the
56+
request origin.
57+
- **asn** <CodeType>string | undefined</CodeType> - The ASN of the request
58+
origin.
59+
- **asOrganization** <CodeType>string | undefined</CodeType> - The AS
60+
organization of the request origin.
61+
- **clientIP** <CodeType>string | undefined</CodeType> - The client IP of the
62+
requestor.
63+
- **zuploUserAgent** <CodeType>string | undefined</CodeType> - The Zuplo user
64+
agent.
7365

7466
To use this default setup add the following code to your `zuplo.runtime.ts`
7567
file:

src/components.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { lazy, Suspense } from "react";
1+
import { lazy, PropsWithChildren, Suspense } from "react";
22
import { CogIcon, CopyIcon, FileTextIcon, ListEndIcon } from "zudoku/icons";
33
import { BundlesTable } from "./BundlesTable.js";
44
import { DocusaurusDocsLicense } from "./DocusaurusDocsLicense.js";
@@ -26,6 +26,9 @@ export const mdxComponents = {
2626
{...props}
2727
/>
2828
),
29+
CodeType: (props: PropsWithChildren) => (
30+
<code className="text-green-600">&lt;{props.children}&gt;</code>
31+
),
2932
DocusaurusDocsLicense,
3033
GithubButton,
3134
ZupIt: (props: any) => <ZupIt {...props} />,

0 commit comments

Comments
 (0)