Tempo: Make TempoQuery.search & SearchQueryParams.tags optional (#54052)

This commit is contained in:
Hamas Shafiq 2022-08-23 12:27:19 +01:00 committed by GitHub
parent e6857bf17d
commit afa7e8d8de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,7 +76,7 @@ export interface TempoQuery extends DataQuery {
query: string;
// Query to find list of traces, e.g., via Loki
linkedQuery?: LokiQuery;
search: string;
search?: string;
queryType: TempoQueryType;
serviceName?: string;
spanName?: string;
@ -90,7 +90,7 @@ interface SearchQueryParams {
minDuration?: string;
maxDuration?: string;
limit?: number;
tags: string;
tags?: string;
start?: number;
end?: number;
}