Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

Commit

Permalink
Merge e24ecb0 into d91d707
Browse files Browse the repository at this point in the history
  • Loading branch information
qudongfang committed Aug 7, 2019
2 parents d91d707 + e24ecb0 commit 1de8fd3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion opentracing-api/src/main/java/io/opentracing/tag/Tags.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* semantic information about the spans. Tracers may expose additional features based on these
* standardized data points. Tag names follow a general structure of namespacing.
*
* @see <a href="https://github.com/opentracing/specification/blob/master/semantic_conventions.md">https://github.com/opentracing/specification/blob/master/semantic_conventions.md</a>
* @see <a href="https://github.com/opentracing/specification/blob/1.1/semantic_conventions.md">OpenTracing Specification Semantic Conventions v1.1</a>
*/

public final class Tags {
Expand Down Expand Up @@ -60,6 +60,13 @@ private Tags() {
*/
public static final StringTag HTTP_METHOD = new StringTag("http.method");

/**
* PEER_ADDRESS records remote "address", suitable for use in a networking client library.
* This may be a `"ip:port"`, a bare `"hostname"`, a FQDN,
* or even a JDBC substring like `"mysql://prod-db:3306"`.
*/
public static final StringTag PEER_ADDRESS = new StringTag("peer.address");

/**
* PEER_HOST_IPV4 records IPv4 host address of the peer.
*/
Expand Down

0 comments on commit 1de8fd3

Please sign in to comment.