Package org.mlflow.api.proto
Interface Service.SearchTracesV3RequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.SearchTracesV3Request
,Service.SearchTracesV3Request.Builder
- Enclosing class:
- Service
public static interface Service.SearchTracesV3RequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getFilter()
A filter expression over trace attributes and tags that allows returning a subset of traces.com.google.protobuf.ByteString
getFilterBytes()
A filter expression over trace attributes and tags that allows returning a subset of traces.Service.TraceLocation
getLocations(int index)
A list of MLflow experiments to search over.int
getLocationsCount()
A list of MLflow experiments to search over.java.util.List<Service.TraceLocation>
getLocationsList()
A list of MLflow experiments to search over.Service.TraceLocationOrBuilder
getLocationsOrBuilder(int index)
A list of MLflow experiments to search over.java.util.List<? extends Service.TraceLocationOrBuilder>
getLocationsOrBuilderList()
A list of MLflow experiments to search over.int
getMaxResults()
Maximum number of traces desired.java.lang.String
getOrderBy(int index)
List of columns for ordering the results, e.g.com.google.protobuf.ByteString
getOrderByBytes(int index)
List of columns for ordering the results, e.g.int
getOrderByCount()
List of columns for ordering the results, e.g.java.util.List<java.lang.String>
getOrderByList()
List of columns for ordering the results, e.g.java.lang.String
getPageToken()
Token indicating the page of traces to fetch.com.google.protobuf.ByteString
getPageTokenBytes()
Token indicating the page of traces to fetch.boolean
hasFilter()
A filter expression over trace attributes and tags that allows returning a subset of traces.boolean
hasMaxResults()
Maximum number of traces desired.boolean
hasPageToken()
Token indicating the page of traces to fetch.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLocationsList
java.util.List<Service.TraceLocation> getLocationsList()
A list of MLflow experiments to search over.
repeated .mlflow.TraceLocation locations = 1;
-
getLocations
Service.TraceLocation getLocations(int index)
A list of MLflow experiments to search over.
repeated .mlflow.TraceLocation locations = 1;
-
getLocationsCount
int getLocationsCount()
A list of MLflow experiments to search over.
repeated .mlflow.TraceLocation locations = 1;
-
getLocationsOrBuilderList
java.util.List<? extends Service.TraceLocationOrBuilder> getLocationsOrBuilderList()
A list of MLflow experiments to search over.
repeated .mlflow.TraceLocation locations = 1;
-
getLocationsOrBuilder
Service.TraceLocationOrBuilder getLocationsOrBuilder(int index)
A list of MLflow experiments to search over.
repeated .mlflow.TraceLocation locations = 1;
-
hasFilter
boolean hasFilter()
A filter expression over trace attributes and tags that allows returning a subset of traces. The syntax is a subset of SQL that supports ANDing together binary operations Example: ``trace.status = 'OK' and trace.timestamp_ms > 1711089570679``.
optional string filter = 2;
- Returns:
- Whether the filter field is set.
-
getFilter
java.lang.String getFilter()
A filter expression over trace attributes and tags that allows returning a subset of traces. The syntax is a subset of SQL that supports ANDing together binary operations Example: ``trace.status = 'OK' and trace.timestamp_ms > 1711089570679``.
optional string filter = 2;
- Returns:
- The filter.
-
getFilterBytes
com.google.protobuf.ByteString getFilterBytes()
A filter expression over trace attributes and tags that allows returning a subset of traces. The syntax is a subset of SQL that supports ANDing together binary operations Example: ``trace.status = 'OK' and trace.timestamp_ms > 1711089570679``.
optional string filter = 2;
- Returns:
- The bytes for filter.
-
hasMaxResults
boolean hasMaxResults()
Maximum number of traces desired. Max threshold is 500.
optional int32 max_results = 3 [default = 100];
- Returns:
- Whether the maxResults field is set.
-
getMaxResults
int getMaxResults()
Maximum number of traces desired. Max threshold is 500.
optional int32 max_results = 3 [default = 100];
- Returns:
- The maxResults.
-
getOrderByList
java.util.List<java.lang.String> getOrderByList()
List of columns for ordering the results, e.g. ``["timestamp_ms DESC"]``.
repeated string order_by = 4;
- Returns:
- A list containing the orderBy.
-
getOrderByCount
int getOrderByCount()
List of columns for ordering the results, e.g. ``["timestamp_ms DESC"]``.
repeated string order_by = 4;
- Returns:
- The count of orderBy.
-
getOrderBy
java.lang.String getOrderBy(int index)
List of columns for ordering the results, e.g. ``["timestamp_ms DESC"]``.
repeated string order_by = 4;
- Parameters:
index
- The index of the element to return.- Returns:
- The orderBy at the given index.
-
getOrderByBytes
com.google.protobuf.ByteString getOrderByBytes(int index)
List of columns for ordering the results, e.g. ``["timestamp_ms DESC"]``.
repeated string order_by = 4;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the orderBy at the given index.
-
hasPageToken
boolean hasPageToken()
Token indicating the page of traces to fetch.
optional string page_token = 5;
- Returns:
- Whether the pageToken field is set.
-
getPageToken
java.lang.String getPageToken()
Token indicating the page of traces to fetch.
optional string page_token = 5;
- Returns:
- The pageToken.
-
getPageTokenBytes
com.google.protobuf.ByteString getPageTokenBytes()
Token indicating the page of traces to fetch.
optional string page_token = 5;
- Returns:
- The bytes for pageToken.
-
-