Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(SPM) Add span kind selector #2012

Merged
merged 13 commits into from
Dec 4, 2023
Prev Previous commit
Next Next commit
Remove optionality in API query param fields
Signed-off-by: Albert Teoh <albert@packsmith.io>
  • Loading branch information
Albert Teoh committed Dec 2, 2023
commit ccd6cc76fc4f4d34178978ce7b3a4f03aaab0182
10 changes: 5 additions & 5 deletions packages/jaeger-ui/src/types/metrics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ export type spanKinds = 'unspecified' | 'internal' | 'server' | 'client' | 'prod
export type MetricsAPIQueryParams = {
quantile: number;
groupByOperation?: boolean;
endTs?: number;
lookback?: number;
step?: number;
ratePer?: number;
spanKind?: spanKinds;
endTs: number;
lookback: number;
step: number;
ratePer: number;
spanKind: spanKinds;
};

export type LableObject = {
Expand Down