@@ -1276,6 +1276,7 @@ static int s_s3_meta_request_incoming_headers(
1276
1276
1277
1277
struct aws_s3_meta_request * meta_request = request -> meta_request ;
1278
1278
AWS_PRECONDITION (meta_request );
1279
+ bool collect_metrics = request -> send_data .metrics != NULL ;
1279
1280
1280
1281
if (aws_http_stream_get_incoming_response_status (stream , & request -> send_data .response_status )) {
1281
1282
AWS_LOGF_ERROR (
@@ -1284,23 +1285,13 @@ static int s_s3_meta_request_incoming_headers(
1284
1285
(void * )meta_request ,
1285
1286
(void * )request );
1286
1287
}
1287
- if (request -> send_data .metrics ) {
1288
+
1289
+ if (collect_metrics ) {
1288
1290
/* Record the headers to the metrics */
1289
1291
struct aws_s3_request_metrics * s3_metrics = request -> send_data .metrics ;
1290
1292
if (s3_metrics -> req_resp_info_metrics .response_headers == NULL ) {
1291
1293
s3_metrics -> req_resp_info_metrics .response_headers = aws_http_headers_new (meta_request -> allocator );
1292
1294
}
1293
-
1294
- for (size_t i = 0 ; i < headers_count ; ++ i ) {
1295
- const struct aws_byte_cursor * name = & headers [i ].name ;
1296
- const struct aws_byte_cursor * value = & headers [i ].value ;
1297
- if (aws_byte_cursor_eq (name , & g_request_id_header_name )) {
1298
- s3_metrics -> req_resp_info_metrics .request_id =
1299
- aws_string_new_from_cursor (connection -> request -> allocator , value );
1300
- }
1301
-
1302
- aws_http_headers_add (s3_metrics -> req_resp_info_metrics .response_headers , * name , * value );
1303
- }
1304
1295
s3_metrics -> req_resp_info_metrics .response_status = request -> send_data .response_status ;
1305
1296
}
1306
1297
@@ -1320,11 +1311,25 @@ static int s_s3_meta_request_incoming_headers(
1320
1311
if (request -> send_data .response_headers == NULL ) {
1321
1312
request -> send_data .response_headers = aws_http_headers_new (meta_request -> allocator );
1322
1313
}
1314
+ }
1323
1315
1324
- for (size_t i = 0 ; i < headers_count ; ++ i ) {
1325
- const struct aws_byte_cursor * name = & headers [i ].name ;
1326
- const struct aws_byte_cursor * value = & headers [i ].value ;
1327
-
1316
+ for (size_t i = 0 ; i < headers_count ; ++ i ) {
1317
+ const struct aws_byte_cursor * name = & headers [i ].name ;
1318
+ const struct aws_byte_cursor * value = & headers [i ].value ;
1319
+ if (request -> send_data .request_id == NULL && aws_byte_cursor_eq (name , & g_request_id_header_name )) {
1320
+ request -> send_data .request_id = aws_string_new_from_cursor (connection -> request -> allocator , value );
1321
+ if (collect_metrics ) {
1322
+ request -> send_data .metrics -> req_resp_info_metrics .request_id =
1323
+ aws_string_new_from_cursor (connection -> request -> allocator , value );
1324
+ }
1325
+ }
1326
+ if (request -> send_data .amz_id_2 == NULL && aws_byte_cursor_eq (name , & g_amz_id_2_header_name )) {
1327
+ request -> send_data .amz_id_2 = aws_string_new_from_cursor (connection -> request -> allocator , value );
1328
+ }
1329
+ if (collect_metrics ) {
1330
+ aws_http_headers_add (request -> send_data .metrics -> req_resp_info_metrics .response_headers , * name , * value );
1331
+ }
1332
+ if (should_record_headers ) {
1328
1333
aws_http_headers_add (request -> send_data .response_headers , * name , * value );
1329
1334
}
1330
1335
}
@@ -1624,12 +1629,15 @@ void aws_s3_meta_request_send_request_finish_default(
1624
1629
1625
1630
AWS_LOGF_DEBUG (
1626
1631
AWS_LS_S3_META_REQUEST ,
1627
- "id=%p: Request %p finished with error code %d (%s) and response status %d" ,
1632
+ "id=%p: Request %p finished with error code %d (%s) and response status %d, x-amz-request-id: %s, x-amz-id-2: "
1633
+ "%s" ,
1628
1634
(void * )meta_request ,
1629
1635
(void * )request ,
1630
1636
error_code ,
1631
1637
aws_error_debug_str (error_code ),
1632
- response_status );
1638
+ response_status ,
1639
+ request -> send_data .request_id ? aws_string_c_str (request -> send_data .request_id ) : "N/A" ,
1640
+ request -> send_data .amz_id_2 ? aws_string_c_str (request -> send_data .amz_id_2 ) : "N/A" );
1633
1641
1634
1642
enum aws_s3_connection_finish_code finish_code = AWS_S3_CONNECTION_FINISH_CODE_FAILED ;
1635
1643
0 commit comments