mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Merge pull request #14893 from roidelapluie/bottomkui
Explain: Use param scalars in aggregations description
This commit is contained in:
commit
1bd10ac5d2
|
@ -45,9 +45,23 @@ const describeAggregationType = (
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
case "bottomk":
|
case "bottomk":
|
||||||
return "returns the bottom K series by value";
|
if (param === null || param.type !== "numberLiteral") {
|
||||||
|
return <>returns the bottom <span className="promql-code promql-number">K</span> series by value</>;
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
returns the bottom <span className="promql-code promql-number">{param.val}</span> series by value
|
||||||
|
</>
|
||||||
|
);
|
||||||
case "topk":
|
case "topk":
|
||||||
return "returns the top K series by value";
|
if (param === null || param.type !== "numberLiteral") {
|
||||||
|
return <>returns the top <span className="promql-code promql-number">K</span> series by value</>;
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
returns the top <span className="promql-code promql-number">{param.val}</span> series by value
|
||||||
|
</>
|
||||||
|
);
|
||||||
case "quantile":
|
case "quantile":
|
||||||
if (param === null) {
|
if (param === null) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
|
@ -62,9 +76,21 @@ const describeAggregationType = (
|
||||||
return "calculates a quantile over the sample values of the input series";
|
return "calculates a quantile over the sample values of the input series";
|
||||||
|
|
||||||
case "limitk":
|
case "limitk":
|
||||||
return "limits the output to K series";
|
if (param === null || param.type !== "numberLiteral") {
|
||||||
|
return <>limits the output to <span className="promql-code promql-number">K</span> series</>;
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
limits the output to <span className="promql-code promql-number">{param.val}</span> series
|
||||||
|
</>
|
||||||
|
);
|
||||||
case "limit_ratio":
|
case "limit_ratio":
|
||||||
|
if (param === null || param.type !== "numberLiteral") {
|
||||||
return "limits the output to a ratio of the input series";
|
return "limits the output to a ratio of the input series";
|
||||||
|
}
|
||||||
|
return `limits the output to a ratio of <span className="promql-code promql-number">${param.val}</span> (${
|
||||||
|
parsePrometheusFloat(param.val) * 100
|
||||||
|
}%) of the input series`;
|
||||||
default:
|
default:
|
||||||
throw new Error(`invalid aggregation type ${aggrType}`);
|
throw new Error(`invalid aggregation type ${aggrType}`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue