Package org.mlflow.api.proto
Interface Service.GetMetricHistoryOrBuilder
- 
- All Superinterfaces:
- com.google.protobuf.MessageLiteOrBuilder,- com.google.protobuf.MessageOrBuilder
 - All Known Implementing Classes:
- Service.GetMetricHistory,- Service.GetMetricHistory.Builder
 - Enclosing class:
- Service
 
 public static interface Service.GetMetricHistoryOrBuilder extends com.google.protobuf.MessageOrBuilder
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetMaxResults()Maximum number of logged instances of a metric for a run to return per call.java.lang.StringgetMetricKey()Name of the metric.com.google.protobuf.ByteStringgetMetricKeyBytes()Name of the metric.java.lang.StringgetPageToken()Token indicating the page of metric history to fetchcom.google.protobuf.ByteStringgetPageTokenBytes()Token indicating the page of metric history to fetchjava.lang.StringgetRunId()ID of the run from which to fetch metric values.com.google.protobuf.ByteStringgetRunIdBytes()ID of the run from which to fetch metric values.java.lang.StringgetRunUuid()[Deprecated, use run_id instead] ID of the run from which to fetch metric values.com.google.protobuf.ByteStringgetRunUuidBytes()[Deprecated, use run_id instead] ID of the run from which to fetch metric values.booleanhasMaxResults()Maximum number of logged instances of a metric for a run to return per call.booleanhasMetricKey()Name of the metric.booleanhasPageToken()Token indicating the page of metric history to fetchbooleanhasRunId()ID of the run from which to fetch metric values.booleanhasRunUuid()[Deprecated, use run_id instead] ID of the run from which to fetch metric values.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilderfindInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
 
- 
 
- 
- 
- 
Method Detail- 
hasRunIdboolean hasRunId() ID of the run from which to fetch metric values. Must be provided. optional string run_id = 3;- Returns:
- Whether the runId field is set.
 
 - 
getRunIdjava.lang.String getRunId() ID of the run from which to fetch metric values. Must be provided. optional string run_id = 3;- Returns:
- The runId.
 
 - 
getRunIdBytescom.google.protobuf.ByteString getRunIdBytes() ID of the run from which to fetch metric values. Must be provided. optional string run_id = 3;- Returns:
- The bytes for runId.
 
 - 
hasRunUuidboolean hasRunUuid() [Deprecated, use run_id instead] ID of the run from which to fetch metric values. This field will be removed in a future MLflow version. optional string run_uuid = 1;- Returns:
- Whether the runUuid field is set.
 
 - 
getRunUuidjava.lang.String getRunUuid() [Deprecated, use run_id instead] ID of the run from which to fetch metric values. This field will be removed in a future MLflow version. optional string run_uuid = 1;- Returns:
- The runUuid.
 
 - 
getRunUuidBytescom.google.protobuf.ByteString getRunUuidBytes() [Deprecated, use run_id instead] ID of the run from which to fetch metric values. This field will be removed in a future MLflow version. optional string run_uuid = 1;- Returns:
- The bytes for runUuid.
 
 - 
hasMetricKeyboolean hasMetricKey() Name of the metric. optional string metric_key = 2 [(.mlflow.validate_required) = true];- Returns:
- Whether the metricKey field is set.
 
 - 
getMetricKeyjava.lang.String getMetricKey() Name of the metric. optional string metric_key = 2 [(.mlflow.validate_required) = true];- Returns:
- The metricKey.
 
 - 
getMetricKeyBytescom.google.protobuf.ByteString getMetricKeyBytes() Name of the metric. optional string metric_key = 2 [(.mlflow.validate_required) = true];- Returns:
- The bytes for metricKey.
 
 - 
hasPageTokenboolean hasPageToken() Token indicating the page of metric history to fetch optional string page_token = 4;- Returns:
- Whether the pageToken field is set.
 
 - 
getPageTokenjava.lang.String getPageToken() Token indicating the page of metric history to fetch optional string page_token = 4;- Returns:
- The pageToken.
 
 - 
getPageTokenBytescom.google.protobuf.ByteString getPageTokenBytes() Token indicating the page of metric history to fetch optional string page_token = 4;- Returns:
- The bytes for pageToken.
 
 - 
hasMaxResultsboolean hasMaxResults() Maximum number of logged instances of a metric for a run to return per call. Backend servers may restrict the value of `max_results` depending on performance requirements. Requests that do not specify this value will behave as non-paginated queries where all metric history values for a given metric within a run are returned in a single response. optional int32 max_results = 5;- Returns:
- Whether the maxResults field is set.
 
 - 
getMaxResultsint getMaxResults() Maximum number of logged instances of a metric for a run to return per call. Backend servers may restrict the value of `max_results` depending on performance requirements. Requests that do not specify this value will behave as non-paginated queries where all metric history values for a given metric within a run are returned in a single response. optional int32 max_results = 5;- Returns:
- The maxResults.
 
 
- 
 
-