| 12345678910111213141516171819 |
- // Unless explicitly stated otherwise all files in this repository are licensed
- // under the Apache License Version 2.0.
- // This product includes software developed at Datadog (https://www.datadoghq.com/).
- // Copyright 2016 Datadog, Inc.
- 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"
- )
|