headers.go 501 B

12345678910111213
  1. // Package cat provides functionality related to the wire format of CAT
  2. // headers.
  3. package cat
  4. // These header names don't match the spec in terms of their casing, but does
  5. // match what Go will give us from http.CanonicalHeaderKey(). Besides, HTTP
  6. // headers are case insensitive anyway. Rejoice!
  7. const (
  8. NewRelicIDName = "X-Newrelic-Id"
  9. NewRelicTxnName = "X-Newrelic-Transaction"
  10. NewRelicAppDataName = "X-Newrelic-App-Data"
  11. NewRelicSyntheticsName = "X-Newrelic-Synthetics"
  12. )