Document default trace includes

Closes gh-8654
This commit is contained in:
Madhura Bhave 2017-03-23 15:36:27 -07:00
parent f73714bdcc
commit cb38546d8a
2 changed files with 23 additions and 1 deletions

View File

@ -142,7 +142,7 @@ public class TraceProperties {
REMOTE_USER,
/**
* Include the time taken to service the request.
* Include the time taken to service the request in milliseconds.
*/
TIME_TAKEN

View File

@ -1510,6 +1510,28 @@ and obtain basic information about the last 100 requests:
}]
----
The following are included in the trace by default:
[cols="1,2"]
|===
|Name |Description
|Request Headers
|Headers from the request.
|Response Headers
|Headers from the response.
|Cookies
|`Cookie` from request headers and `Set-Cookie` from response headers.
|Errors
|The error attributes (if any).
|Time Taken
|The time taken to service the request in milliseconds.
|===
[[production-ready-custom-tracing]]