1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
| {
...
"request": {
"uri": "/uuid-test",
"size": 187,
"method": "POST",
"querystring": {},
"body": {
"uuid": "123e4567-e89b-12d3-a456-426614174000"
},
"url": "http://localhost:8000/uuid-test",
"headers": {
"content-length": "48",
"user-agent": "curl/8.7.1",
"content-type": "application/json",
"host": "localhost:8000",
"accept": "*/*",
"kong-request-id": "acfa1af0-c53e-4129-8b89-8a16be923e35",
"uuid": "123e4567-e89b-12d3-a456-426614174000"
},
"id": "ebfdfe72b011c1100130e00f026bfb65"
},
...
"response": {
"body": {
"origin": "192.168.97.1, 133.201.15.64",
"data": "{\"uuid\": \"123e4567-e89b-12d3-a456-426614174000\"}",
"json": {
"uuid": "123e4567-e89b-12d3-a456-426614174000"
},
"form": {},
"method": "POST",
"url": "http://localhost/anything",
"files": {},
"args": {},
"headers": {
"X-Forwarded-Host": "localhost",
"Content-Type": "application/json",
"Kong-Request-Id": "acfa1af0-c53e-4129-8b89-8a16be923e35",
"Uuid": "123e4567-e89b-12d3-a456-426614174000",
"X-Amzn-Trace-Id": "Root=1-67fe09a9-7b1c7cf96bbcc28938e75a7f",
"Accept": "*/*",
"Host": "httpbin.org",
"X-Kong-Request-Id": "ebfdfe72b011c1100130e00f026bfb65",
"User-Agent": "curl/8.7.1",
"X-Forwarded-Prefix": "/uuid-test",
"X-Forwarded-Path": "/uuid-test",
"Content-Length": "48"
}
},
"size": 1207,
"status": 200,
"headers": {
"via": "1.1 kong/3.10.0.0-enterprise-edition",
"x-kong-proxy-latency": "68",
"content-type": "application/json",
"x-kong-upstream-latency": "352",
"server": "gunicorn/19.9.0",
"content-length": "825",
"x-kong-request-id": "ebfdfe72b011c1100130e00f026bfb65",
"date": "Tue, 15 Apr 2025 07:24:25 GMT",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true",
"connection": "close"
}
},
...
}
|