We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 297f222 commit 27f4773Copy full SHA for 27f4773
mixerclient/control/src/http/attributes_builder.cc
@@ -141,6 +141,9 @@ void AttributesBuilder::ExtractReportAttributes(ReportData *report_data) {
141
builder.AddInt64(AttributeName::kResponseSize, info.send_bytes);
142
builder.AddDuration(AttributeName::kResponseDuration, info.duration);
143
if (!request_->check_status.ok()) {
144
+ builder.AddInt64(
145
+ AttributeName::kResponseCode,
146
+ utils::StatusHttpCode(request_->check_status.error_code()));
147
builder.AddInt64(AttributeName::kCheckErrorCode,
148
request_->check_status.error_code());
149
builder.AddString(AttributeName::kCheckErrorMessage,
0 commit comments