Package org.mlflow.api.proto
Interface Service.TraceInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.TraceInfo
,Service.TraceInfo.Builder
- Enclosing class:
- Service
public static interface Service.TraceInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getExecutionTimeMs()
Unix timestamp of the duration of the trace in milliseconds.java.lang.String
getExperimentId()
The ID of the experiment that contains the trace.com.google.protobuf.ByteString
getExperimentIdBytes()
The ID of the experiment that contains the trace.java.lang.String
getRequestId()
Unique identifier for the trace.com.google.protobuf.ByteString
getRequestIdBytes()
Unique identifier for the trace.Service.TraceRequestMetadata
getRequestMetadata(int index)
Other trace metadata.int
getRequestMetadataCount()
Other trace metadata.java.util.List<Service.TraceRequestMetadata>
getRequestMetadataList()
Other trace metadata.Service.TraceRequestMetadataOrBuilder
getRequestMetadataOrBuilder(int index)
Other trace metadata.java.util.List<? extends Service.TraceRequestMetadataOrBuilder>
getRequestMetadataOrBuilderList()
Other trace metadata.Service.TraceStatus
getStatus()
Overall status of the operation being traced (OK, error, etc.).Service.TraceTag
getTags(int index)
Tags for the trace.int
getTagsCount()
Tags for the trace.java.util.List<Service.TraceTag>
getTagsList()
Tags for the trace.Service.TraceTagOrBuilder
getTagsOrBuilder(int index)
Tags for the trace.java.util.List<? extends Service.TraceTagOrBuilder>
getTagsOrBuilderList()
Tags for the trace.long
getTimestampMs()
Unix timestamp of when the trace started in milliseconds.boolean
hasExecutionTimeMs()
Unix timestamp of the duration of the trace in milliseconds.boolean
hasExperimentId()
The ID of the experiment that contains the trace.boolean
hasRequestId()
Unique identifier for the trace.boolean
hasStatus()
Overall status of the operation being traced (OK, error, etc.).boolean
hasTimestampMs()
Unix timestamp of when the trace started in milliseconds.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasRequestId
boolean hasRequestId()
Unique identifier for the trace.
optional string request_id = 1;
- Returns:
- Whether the requestId field is set.
-
getRequestId
java.lang.String getRequestId()
Unique identifier for the trace.
optional string request_id = 1;
- Returns:
- The requestId.
-
getRequestIdBytes
com.google.protobuf.ByteString getRequestIdBytes()
Unique identifier for the trace.
optional string request_id = 1;
- Returns:
- The bytes for requestId.
-
hasExperimentId
boolean hasExperimentId()
The ID of the experiment that contains the trace.
optional string experiment_id = 2;
- Returns:
- Whether the experimentId field is set.
-
getExperimentId
java.lang.String getExperimentId()
The ID of the experiment that contains the trace.
optional string experiment_id = 2;
- Returns:
- The experimentId.
-
getExperimentIdBytes
com.google.protobuf.ByteString getExperimentIdBytes()
The ID of the experiment that contains the trace.
optional string experiment_id = 2;
- Returns:
- The bytes for experimentId.
-
hasTimestampMs
boolean hasTimestampMs()
Unix timestamp of when the trace started in milliseconds.
optional int64 timestamp_ms = 3;
- Returns:
- Whether the timestampMs field is set.
-
getTimestampMs
long getTimestampMs()
Unix timestamp of when the trace started in milliseconds.
optional int64 timestamp_ms = 3;
- Returns:
- The timestampMs.
-
hasExecutionTimeMs
boolean hasExecutionTimeMs()
Unix timestamp of the duration of the trace in milliseconds.
optional int64 execution_time_ms = 4;
- Returns:
- Whether the executionTimeMs field is set.
-
getExecutionTimeMs
long getExecutionTimeMs()
Unix timestamp of the duration of the trace in milliseconds.
optional int64 execution_time_ms = 4;
- Returns:
- The executionTimeMs.
-
hasStatus
boolean hasStatus()
Overall status of the operation being traced (OK, error, etc.).
optional .mlflow.TraceStatus status = 5;
- Returns:
- Whether the status field is set.
-
getStatus
Service.TraceStatus getStatus()
Overall status of the operation being traced (OK, error, etc.).
optional .mlflow.TraceStatus status = 5;
- Returns:
- The status.
-
getRequestMetadataList
java.util.List<Service.TraceRequestMetadata> getRequestMetadataList()
Other trace metadata.
repeated .mlflow.TraceRequestMetadata request_metadata = 6;
-
getRequestMetadata
Service.TraceRequestMetadata getRequestMetadata(int index)
Other trace metadata.
repeated .mlflow.TraceRequestMetadata request_metadata = 6;
-
getRequestMetadataCount
int getRequestMetadataCount()
Other trace metadata.
repeated .mlflow.TraceRequestMetadata request_metadata = 6;
-
getRequestMetadataOrBuilderList
java.util.List<? extends Service.TraceRequestMetadataOrBuilder> getRequestMetadataOrBuilderList()
Other trace metadata.
repeated .mlflow.TraceRequestMetadata request_metadata = 6;
-
getRequestMetadataOrBuilder
Service.TraceRequestMetadataOrBuilder getRequestMetadataOrBuilder(int index)
Other trace metadata.
repeated .mlflow.TraceRequestMetadata request_metadata = 6;
-
getTagsList
java.util.List<Service.TraceTag> getTagsList()
Tags for the trace.
repeated .mlflow.TraceTag tags = 7;
-
getTags
Service.TraceTag getTags(int index)
Tags for the trace.
repeated .mlflow.TraceTag tags = 7;
-
getTagsCount
int getTagsCount()
Tags for the trace.
repeated .mlflow.TraceTag tags = 7;
-
getTagsOrBuilderList
java.util.List<? extends Service.TraceTagOrBuilder> getTagsOrBuilderList()
Tags for the trace.
repeated .mlflow.TraceTag tags = 7;
-
getTagsOrBuilder
Service.TraceTagOrBuilder getTagsOrBuilder(int index)
Tags for the trace.
repeated .mlflow.TraceTag tags = 7;
-
-