Interface NodeOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Node,Node.Builder
public interface NodeOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsAttributes(String key)Additional attributes.Map<String,String>getAttributes()Deprecated.intgetAttributesCount()Additional attributes.Map<String,String>getAttributesMap()Additional attributes.StringgetAttributesOrDefault(String key, String defaultValue)Additional attributes.StringgetAttributesOrThrow(String key)Additional attributes.ProcessIdentifiergetIdentifier()Identifier that uniquely identifies a process within a VM/container.ProcessIdentifierOrBuildergetIdentifierOrBuilder()Identifier that uniquely identifies a process within a VM/container.LibraryInfogetLibraryInfo()Information on the OpenCensus Library that initiates the stream.LibraryInfoOrBuildergetLibraryInfoOrBuilder()Information on the OpenCensus Library that initiates the stream.ServiceInfogetServiceInfo()Additional information on service.ServiceInfoOrBuildergetServiceInfoOrBuilder()Additional information on service.booleanhasIdentifier()Identifier that uniquely identifies a process within a VM/container.booleanhasLibraryInfo()Information on the OpenCensus Library that initiates the stream.booleanhasServiceInfo()Additional information on service.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasIdentifier
boolean hasIdentifier()
Identifier that uniquely identifies a process within a VM/container.
.opencensus.proto.agent.common.v1.ProcessIdentifier identifier = 1;- Returns:
- Whether the identifier field is set.
-
getIdentifier
ProcessIdentifier getIdentifier()
Identifier that uniquely identifies a process within a VM/container.
.opencensus.proto.agent.common.v1.ProcessIdentifier identifier = 1;- Returns:
- The identifier.
-
getIdentifierOrBuilder
ProcessIdentifierOrBuilder getIdentifierOrBuilder()
Identifier that uniquely identifies a process within a VM/container.
.opencensus.proto.agent.common.v1.ProcessIdentifier identifier = 1;
-
hasLibraryInfo
boolean hasLibraryInfo()
Information on the OpenCensus Library that initiates the stream.
.opencensus.proto.agent.common.v1.LibraryInfo library_info = 2;- Returns:
- Whether the libraryInfo field is set.
-
getLibraryInfo
LibraryInfo getLibraryInfo()
Information on the OpenCensus Library that initiates the stream.
.opencensus.proto.agent.common.v1.LibraryInfo library_info = 2;- Returns:
- The libraryInfo.
-
getLibraryInfoOrBuilder
LibraryInfoOrBuilder getLibraryInfoOrBuilder()
Information on the OpenCensus Library that initiates the stream.
.opencensus.proto.agent.common.v1.LibraryInfo library_info = 2;
-
hasServiceInfo
boolean hasServiceInfo()
Additional information on service.
.opencensus.proto.agent.common.v1.ServiceInfo service_info = 3;- Returns:
- Whether the serviceInfo field is set.
-
getServiceInfo
ServiceInfo getServiceInfo()
Additional information on service.
.opencensus.proto.agent.common.v1.ServiceInfo service_info = 3;- Returns:
- The serviceInfo.
-
getServiceInfoOrBuilder
ServiceInfoOrBuilder getServiceInfoOrBuilder()
Additional information on service.
.opencensus.proto.agent.common.v1.ServiceInfo service_info = 3;
-
getAttributesCount
int getAttributesCount()
Additional attributes.
map<string, string> attributes = 4;
-
containsAttributes
boolean containsAttributes(String key)
Additional attributes.
map<string, string> attributes = 4;
-
getAttributes
@Deprecated Map<String,String> getAttributes()
Deprecated.UsegetAttributesMap()instead.
-
getAttributesMap
Map<String,String> getAttributesMap()
Additional attributes.
map<string, string> attributes = 4;
-
getAttributesOrDefault
String getAttributesOrDefault(String key, String defaultValue)
Additional attributes.
map<string, string> attributes = 4;
-
-