peer.go 684 B

12345678910111213141516171819
  1. // Unless explicitly stated otherwise all files in this repository are licensed
  2. // under the Apache License Version 2.0.
  3. // This product includes software developed at Datadog (https://www.datadoghq.com/).
  4. // Copyright 2016 Datadog, Inc.
  5. package ext
  6. const (
  7. // PeerHostIPV4 records IPv4 host address of the peer.
  8. PeerHostIPV4 = "peer.ipv4"
  9. // PeerHostIPV6 records the IPv6 host address of the peer.
  10. PeerHostIPV6 = "peer.ipv6"
  11. // PeerService records the service name of the peer service.
  12. PeerService = "peer.service"
  13. // PeerHostname records the host name of the peer.
  14. PeerHostname = "peer.hostname"
  15. // PeerPort records the port number of the peer.
  16. PeerPort = "peer.port"
  17. )