@@ -18,58 +18,50 @@ file `zuplo.runtime.ts`:
18
18
19
19
This logger includes a default type and function that logs the following fields:
20
20
21
- - ** deploymentName** <code className =" text-green-600 " >< ; string> ; </code > -
22
- The name of the deployment.
23
- - ** timestamp** <code className =" text-green-600 " >< ; string> ; </code > - The
24
- time the log was created.
25
- - ** requestId** <code className =" text-green-600 " >< ; string> ; </code > - The
26
- UUID of the request (the value of the ` zp-rid ` header).
27
- - ** routePath** <code className =" text-green-600 " >< ; string> ; </code > - The
28
- path of the route.
29
- - ** operationId** <code className =" text-green-600 " >< ; string |
30
- undefined> ; </code > - The operation ID.
31
- - ** url** <code className =" text-green-600 " >< ; string | undefined> ; </code > -
32
- The URL of the request.
33
- - ** statusCode** <code className =" text-green-600 " >< ; number |
34
- undefined> ; </code > - The status code of the response.
35
- - ** durationMs** <code className =" text-green-600 " >< ; number |
36
- undefined> ; </code > - The duration of the request in milliseconds.
37
- - ** method** <code className =" text-green-600 " >< ; string> ; </code > - The HTTP
38
- method of the request.
39
- - ** userSub** <code className =" text-green-600 " >< ; string |
40
- undefined> ; </code > - The user sub.
41
- - ** instanceId** <code className =" text-green-600 " >< ; string |
42
- undefined> ; </code > - The instance ID.
43
- - ** colo** <code className =" text-green-600 " >< ; string | undefined> ; </code > -
44
- The colo (datacenter) of the request.
45
- - ** city** <code className =" text-green-600 " >< ; string | undefined> ; </code > -
46
- The city the request origin.
47
- - ** country** <code className =" text-green-600 " >< ; string |
48
- undefined> ; </code > - The country the request origin.
49
- - ** continent** <code className =" text-green-600 " >< ; string |
50
- undefined> ; </code > - The continent the request origin.
51
- - ** latitude** <code className =" text-green-600 " >< ; string |
52
- undefined> ; </code > - The latitude of the request origin.
53
- - ** longitude** <code className =" text-green-600 " >< ; string |
54
- undefined> ; </code > - The longitude of the request origin.
55
- - ** postalCode** <code className =" text-green-600 " >< ; string |
56
- undefined> ; </code > - The postal code of the request origin.
57
- - ** metroCode** <code className =" text-green-600 " >< ; string |
58
- undefined> ; </code > - The metro code of the request origin.
59
- - ** region** <code className =" text-green-600 " >< ; string |
60
- undefined> ; </code > - The region of the request origin.
61
- - ** regionCode** <code className =" text-green-600 " >< ; string |
62
- undefined> ; </code > - The region code of the request origin.
63
- - ** timezone** <code className =" text-green-600 " >< ; string |
64
- undefined> ; </code > - The timezone of the request origin.
65
- - ** asn** <code className =" text-green-600 " >< ; string | undefined> ; </code > -
66
- The ASN of the request origin.
67
- - ** asOrganization** <code className =" text-green-600 " >< ; string |
68
- undefined> ; </code > - The AS organization of the request origin.
69
- - ** clientIP** <code className =" text-green-600 " >< ; string |
70
- undefined> ; </code > - The client IP of the requestor.
71
- - ** zuploUserAgent** <code className =" text-green-600 " >< ; string |
72
- undefined> ; </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.
73
65
74
66
To use this default setup add the following code to your ` zuplo.runtime.ts `
75
67
file:
0 commit comments