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 boolean
containsAttributes(String key)
Additional attributes.Map<String,String>
getAttributes()
Deprecated.int
getAttributesCount()
Additional attributes.Map<String,String>
getAttributesMap()
Additional attributes.String
getAttributesOrDefault(String key, String defaultValue)
Additional attributes.String
getAttributesOrThrow(String key)
Additional attributes.ProcessIdentifier
getIdentifier()
Identifier that uniquely identifies a process within a VM/container.ProcessIdentifierOrBuilder
getIdentifierOrBuilder()
Identifier that uniquely identifies a process within a VM/container.LibraryInfo
getLibraryInfo()
Information on the OpenCensus Library that initiates the stream.LibraryInfoOrBuilder
getLibraryInfoOrBuilder()
Information on the OpenCensus Library that initiates the stream.ServiceInfo
getServiceInfo()
Additional information on service.ServiceInfoOrBuilder
getServiceInfoOrBuilder()
Additional information on service.boolean
hasIdentifier()
Identifier that uniquely identifies a process within a VM/container.boolean
hasLibraryInfo()
Information on the OpenCensus Library that initiates the stream.boolean
hasServiceInfo()
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;
-
-