Skip to content

Commit

Permalink
Fix aggregated domain metrics test fixture
Browse files Browse the repository at this point in the history
The aggregated metrics for the domain test had the host incorrectly
set.

Fixed the indentation to be consistent with the other fixtures.

Signed-off-by: Michael Lorant <[email protected]>
  • Loading branch information
mikelorant committed May 26, 2024
1 parent f6a1c51 commit edeb866
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions pkg/rt/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4765,27 +4765,27 @@ const domainsResponseFixture = `{
}
},
"aggregated": {
"testorigin": {
"bandwidth": 1048,
"bereq_body_bytes": 16,
"bereq_header_bytes": 16,
"edge_hit_ratio": 0.5,
"edge_hit_requests": 5,
"edge_miss_requests": 5,
"edge_requests": 10,
"edge_resp_body_bytes": 1024,
"edge_resp_header_bytes": 48,
"origin_fetch_resp_body_bytes": 1024,
"origin_fetch_resp_header_bytes": 48,
"origin_fetches": 5,
"origin_offload": 5,
"origin_status_200": 5,
"origin_status_2xx": 5,
"requests": 10,
"resp_body_bytes": 1024,
"resp_header_bytes": 48,
"status_200": 10,
"status_2xx": 10
"testhost": {
"bandwidth": 1048,
"bereq_body_bytes": 16,
"bereq_header_bytes": 16,
"edge_hit_ratio": 0.5,
"edge_hit_requests": 5,
"edge_miss_requests": 5,
"edge_requests": 10,
"edge_resp_body_bytes": 1024,
"edge_resp_header_bytes": 48,
"origin_fetch_resp_body_bytes": 1024,
"origin_fetch_resp_header_bytes": 48,
"origin_fetches": 5,
"origin_offload": 5,
"origin_status_200": 5,
"origin_status_2xx": 5,
"requests": 10,
"resp_body_bytes": 1024,
"resp_header_bytes": 48,
"status_200": 10,
"status_2xx": 10
}
}
}
Expand Down

0 comments on commit edeb866

Please sign in to comment.