traefik/vendor/gopkg.in/DataDog/dd-trace-go.v1/ddtrace/ext/peer.go

15 lines
445 B
Go
Raw Normal View History

2018-11-19 15:40:03 +00:00
package ext
const (
// PeerHostIPV4 records IPv4 host address of the peer.
PeerHostIPV4 = "peer.ipv4"
// PeerHostIPV6 records the IPv6 host address of the peer.
PeerHostIPV6 = "peer.ipv6"
// PeerService records the service name of the peer service.
PeerService = "peer.service"
// PeerHostname records the host name of the peer.
PeerHostname = "peer.hostname"
// PeerPort records the port number of the peer.
PeerPort = "peer.port"
)