Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,8 @@ For Application Gateway and WAF v2 SKU:
|serverRouted | The backend server that application gateway routes the request to. |
|serverStatus | HTTP status code of the backend server. |
|serverResponseLatency | Latency of the response (in **seconds**) from the backend server. |
|serverConnectTime | Time spent establishing a connection with an upstream server. |
|serverHeaderTime | Time between establishing a connection to the upstream server and receiving the first byte of the response header. |
Copy link

Copilot AI Oct 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The descriptions should include the time units for consistency with other timing fields in the table. Based on the example values (0.008, 0.028), these appear to be in seconds like serverResponseLatency.

Suggested change
|serverHeaderTime | Time between establishing a connection to the upstream server and receiving the first byte of the response header. |
|serverHeaderTime | Time (in **seconds**) between establishing a connection to the upstream server and receiving the first byte of the response header. |

Copilot uses AI. Check for mistakes.
|host | Address listed in the host header of the request. If rewritten using header rewrite, this field contains the updated host name. |
|originalRequestUriWithArgs | This field contains the original request URL. |
|requestUri | This field contains the URL after the rewrite operation on Application Gateway. |
Expand Down Expand Up @@ -262,6 +264,8 @@ For Application Gateway and WAF v2 SKU:
"serverRouted": "52.239.221.65:443",
"serverStatus": "200",
"serverResponseLatency": "0.028",
"serverConnectTime":"0.008",
"serverHeaderTime":"0.028"
Copy link

Copilot AI Oct 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing comma after the serverHeaderTime line. JSON objects require commas between key-value pairs, and the next line contains another property.

Suggested change
"serverHeaderTime":"0.028"
"serverHeaderTime":"0.028",

Copilot uses AI. Check for mistakes.
"upstreamSourcePort": "21564",
"originalHost": "20.110.30.194",
"host": "20.110.30.194",
Expand Down