github.com/lulzWill/go-agent@v2.1.2+incompatible/internal/cat/headers.go (about)

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