Interface Instrumentation
public interface Instrumentation
Azure Instrumentation for Event Hubs or Service Bus processor.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic enum
The status of the instrumented component.static enum
Specifies the type of queue and topic currently in use. -
Method Summary
Modifier and TypeMethodDescriptionstatic String
buildId
(Instrumentation.Type type, String name) Build the unique id.Return the exception.default String
getId()
Get the unique id.getName()
Get the name of destination entity.Get the status of the instrumented component.getType()
Get type.void
setStatus
(Instrumentation.Status status) Set the status of the component.void
setStatus
(Instrumentation.Status status, Throwable exception) Set the status of the component.
-
Method Details
-
getName
String getName()Get the name of destination entity.- Returns:
- name the name of destination entity
-
getType
Instrumentation.Type getType()Get type.- Returns:
- type the type
- See Also:
-
getException
Throwable getException()Return the exception.- Returns:
- the exception.
-
getStatus
Instrumentation.Status getStatus()Get the status of the instrumented component.- Returns:
- the status.
-
setStatus
Set the status of the component.- Parameters:
status
- the status to set.
-
setStatus
Set the status of the component.- Parameters:
status
- the status to set.exception
- the exception thrown by the component.
-
getId
Get the unique id.- Returns:
- the id string.
-
buildId
Build the unique id.- Parameters:
type
- the instrumentation type.name
- the instrumentation name.- Returns:
- the unique strings.
-