com.dynatrace.oneagent.sdk.api
Interface IncomingTaggable

All Known Subinterfaces:
IncomingMessageProcessTracer, IncomingRemoteCallTracer, IncomingWebRequestTracer

public interface IncomingTaggable

Common interface for server-tagging-related methods. Not to be directly used by SDK user.


Method Summary
 void setDynatraceByteTag(byte[] tag)
          Same as setDynatraceStringTag(String) but consumes binary representation of tag.
 void setDynatraceStringTag(java.lang.String tag)
          Consumes a tag to continue a pure path.
 

Method Detail

setDynatraceStringTag

void setDynatraceStringTag(java.lang.String tag)
Consumes a tag to continue a pure path. Must be set before a node is being started.
See OutgoingTaggable to determine how to create a tag.

Parameters:
tag - the tag in String representation - must not be null.
Since:
1.0

setDynatraceByteTag

void setDynatraceByteTag(byte[] tag)
Same as setDynatraceStringTag(String) but consumes binary representation of tag.

Parameters:
tag - the tag in binary representation - must not be null.
Since:
1.0