Skip to content

Commit 83ca150

Browse files
CLDSRV-839: optional time fields for batch delete
1 parent bb151e5 commit 83ca150

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

schema/server_access_log.schema.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757
"minimum": 0
5858
},
5959
"elapsed_ms": {
60-
"description": "Total duration of the request in milliseconds. The timer starts when the server first routes the request and stops when the request completes or is closed prematurely.",
61-
"type": "number",
60+
"description": "Total duration of the request in milliseconds. The timer starts when the server first routes the request and stops when the request completes or is closed prematurely. Null for BATCH.DELETE.OBJECT operations logged during request processing.",
61+
"type": ["number", "null"],
6262
"minimum": 0
6363
},
6464
"startTime": {
@@ -86,8 +86,8 @@
8686
"type": ["integer", "null"]
8787
},
8888
"totalTime": {
89-
"description": "AWS server access log 'Total Time' field. From AWS 'The number of milliseconds that the request was in flight from the server's perspective. This value is measured from the time that your request is received to the time that the last byte of the response is sent. Measurements made from the client's perspective might be longer because of network latency.'.",
90-
"type": "string"
89+
"description": "AWS server access log 'Total Time' field. From AWS 'The number of milliseconds that the request was in flight from the server's perspective. This value is measured from the time that your request is received to the time that the last byte of the response is sent. Measurements made from the client's perspective might be longer because of network latency.'. Null for BATCH.DELETE.OBJECT operations logged during request processing.",
90+
"type": ["string", "null"]
9191
},
9292
"turnAroundTime": {
9393
"description": "AWS server access log 'Turn Around Time' field. From AWS 'The number of milliseconds that Amazon S3 spent processing your request. This value is measured from the time that the last byte of your request was received until the time that the first byte of the response was sent.'.",
@@ -201,8 +201,6 @@
201201
"logFormatVersion",
202202
"httpMethod",
203203
"startTime",
204-
"elapsed_ms",
205-
"totalTime",
206204
"requestURI",
207205
"hostHeader",
208206
"req_id",

0 commit comments

Comments
 (0)