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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetExecutionTimeMs()Unix timestamp of the duration of the trace in milliseconds.java.lang.StringgetExperimentId()The ID of the experiment that contains the trace.com.google.protobuf.ByteStringgetExperimentIdBytes()The ID of the experiment that contains the trace.java.lang.StringgetRequestId()Unique identifier for the trace.com.google.protobuf.ByteStringgetRequestIdBytes()Unique identifier for the trace.Service.TraceRequestMetadatagetRequestMetadata(int index)Other trace metadata.intgetRequestMetadataCount()Other trace metadata.java.util.List<Service.TraceRequestMetadata>getRequestMetadataList()Other trace metadata.Service.TraceRequestMetadataOrBuildergetRequestMetadataOrBuilder(int index)Other trace metadata.java.util.List<? extends Service.TraceRequestMetadataOrBuilder>getRequestMetadataOrBuilderList()Other trace metadata.Service.TraceStatusgetStatus()Overall status of the operation being traced (OK, error, etc.).Service.TraceTaggetTags(int index)Tags for the trace.intgetTagsCount()Tags for the trace.java.util.List<Service.TraceTag>getTagsList()Tags for the trace.Service.TraceTagOrBuildergetTagsOrBuilder(int index)Tags for the trace.java.util.List<? extends Service.TraceTagOrBuilder>getTagsOrBuilderList()Tags for the trace.longgetTimestampMs()Unix timestamp of when the trace started in milliseconds.booleanhasExecutionTimeMs()Unix timestamp of the duration of the trace in milliseconds.booleanhasExperimentId()The ID of the experiment that contains the trace.booleanhasRequestId()Unique identifier for the trace.booleanhasStatus()Overall status of the operation being traced (OK, error, etc.).booleanhasTimestampMs()Unix timestamp of when the trace started in milliseconds.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilderfindInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
 
- 
 
- 
- 
- 
Method Detail- 
hasRequestIdboolean hasRequestId() Unique identifier for the trace. optional string request_id = 1;- Returns:
- Whether the requestId field is set.
 
 - 
getRequestIdjava.lang.String getRequestId() Unique identifier for the trace. optional string request_id = 1;- Returns:
- The requestId.
 
 - 
getRequestIdBytescom.google.protobuf.ByteString getRequestIdBytes() Unique identifier for the trace. optional string request_id = 1;- Returns:
- The bytes for requestId.
 
 - 
hasExperimentIdboolean hasExperimentId() The ID of the experiment that contains the trace. optional string experiment_id = 2;- Returns:
- Whether the experimentId field is set.
 
 - 
getExperimentIdjava.lang.String getExperimentId() The ID of the experiment that contains the trace. optional string experiment_id = 2;- Returns:
- The experimentId.
 
 - 
getExperimentIdBytescom.google.protobuf.ByteString getExperimentIdBytes() The ID of the experiment that contains the trace. optional string experiment_id = 2;- Returns:
- The bytes for experimentId.
 
 - 
hasTimestampMsboolean hasTimestampMs() Unix timestamp of when the trace started in milliseconds. optional int64 timestamp_ms = 3;- Returns:
- Whether the timestampMs field is set.
 
 - 
getTimestampMslong getTimestampMs() Unix timestamp of when the trace started in milliseconds. optional int64 timestamp_ms = 3;- Returns:
- The timestampMs.
 
 - 
hasExecutionTimeMsboolean hasExecutionTimeMs() Unix timestamp of the duration of the trace in milliseconds. optional int64 execution_time_ms = 4;- Returns:
- Whether the executionTimeMs field is set.
 
 - 
getExecutionTimeMslong getExecutionTimeMs() Unix timestamp of the duration of the trace in milliseconds. optional int64 execution_time_ms = 4;- Returns:
- The executionTimeMs.
 
 - 
hasStatusboolean hasStatus() Overall status of the operation being traced (OK, error, etc.). optional .mlflow.TraceStatus status = 5;- Returns:
- Whether the status field is set.
 
 - 
getStatusService.TraceStatus getStatus() Overall status of the operation being traced (OK, error, etc.). optional .mlflow.TraceStatus status = 5;- Returns:
- The status.
 
 - 
getRequestMetadataListjava.util.List<Service.TraceRequestMetadata> getRequestMetadataList() Other trace metadata. repeated .mlflow.TraceRequestMetadata request_metadata = 6;
 - 
getRequestMetadataService.TraceRequestMetadata getRequestMetadata(int index) Other trace metadata. repeated .mlflow.TraceRequestMetadata request_metadata = 6;
 - 
getRequestMetadataCountint getRequestMetadataCount() Other trace metadata. repeated .mlflow.TraceRequestMetadata request_metadata = 6;
 - 
getRequestMetadataOrBuilderListjava.util.List<? extends Service.TraceRequestMetadataOrBuilder> getRequestMetadataOrBuilderList() Other trace metadata. repeated .mlflow.TraceRequestMetadata request_metadata = 6;
 - 
getRequestMetadataOrBuilderService.TraceRequestMetadataOrBuilder getRequestMetadataOrBuilder(int index) Other trace metadata. repeated .mlflow.TraceRequestMetadata request_metadata = 6;
 - 
getTagsListjava.util.List<Service.TraceTag> getTagsList() Tags for the trace. repeated .mlflow.TraceTag tags = 7;
 - 
getTagsService.TraceTag getTags(int index) Tags for the trace. repeated .mlflow.TraceTag tags = 7;
 - 
getTagsCountint getTagsCount() Tags for the trace. repeated .mlflow.TraceTag tags = 7;
 - 
getTagsOrBuilderListjava.util.List<? extends Service.TraceTagOrBuilder> getTagsOrBuilderList() Tags for the trace. repeated .mlflow.TraceTag tags = 7;
 - 
getTagsOrBuilderService.TraceTagOrBuilder getTagsOrBuilder(int index) Tags for the trace. repeated .mlflow.TraceTag tags = 7;
 
- 
 
-