@@ -41,6 +41,12 @@ All client metrics should be tagged with the following.
4141| http_client_status | HTTP status code as an integer (e.g. 200, 404, 500.), or "error" if no response status line was received |
4242| http_client_host | Value of the request Host header |
4343
44+ ` http_client_method ` , ` http_client_path ` , ` http_client_host ` are set when an outgoing request
45+ starts and are available in the context for the entire outgoing request processing.
46+ ` http_client_status ` is set when an outgoing request finishes and is only available around the
47+ stats recorded at the end of request processing.
48+
49+
4450### Default views
4551
4652The following set of views are considered minimum required to monitor client side performance:
@@ -69,8 +75,6 @@ Server stats are recorded for each individual HTTP request, including for each r
6975### Tags
7076
7177All server metrics should be tagged with the following.
72- ` http_server_method ` , ` http_server_path ` , ` http_server_host ` are available in the context for the entire request processing.
73- ` http_server_status ` is only available around the stats recorded at the end of request processing.
7478
7579| Tag suffix | Description |
7680| --------------------| ---------------------------------------------------------------------|
@@ -79,6 +83,11 @@ All server metrics should be tagged with the following.
7983| http_server_status | HTTP server status code returned, as an integer e.g. 200, 404, 500. |
8084| http_server_host | Value of the request Host header |
8185
86+ ` http_server_method ` , ` http_server_path ` , ` http_server_host ` are set when an incoming request
87+ starts and are available in the context for the entire incoming request processing.
88+ ` http_server_status ` is set when an incoming request finishes and is only available around the stats
89+ recorded at the end of request processing.
90+
8291### Default views
8392
8493The following set of views are considered minimum required to monitor server side performance:
0 commit comments