You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 23, 2023. It is now read-only.
Copy file name to clipboardexpand all lines: docs/cloud/http-api.md
+18
Original file line number
Diff line number
Diff line change
@@ -279,6 +279,11 @@ that duplicate entries will be returned.
279
279
280
280
* expr (required): a list of [tag expressions](#tag-expressions)
281
281
* from: Graphite [from time specification](#fromto) (optional. defaults to now-24hours)
282
+
* format: series-json, lastts-json. (defaults to series-json)
283
+
* limit: max number to return. (default: 0)
284
+
Note: the resultset is also subjected to the cluster configuration.
285
+
if the result set is larger than the cluster configuration, an error is returned. If it breaches the provided limit, the result is truncated.
286
+
* meta: If false and format is `series-json` then return series names as array (graphite compatibility). If true, include meta information like warnings. (defaults to false)
Returns metrics which match tag queries and have received an update since `from`.
77
+
Note: the returned results are not deduplicated and in certain cases it is possible
78
+
that duplicate entries will be returned.
79
+
80
+
##### Parameters
81
+
82
+
* expr (required): a list of [tag expressions](#tag-expressions)
83
+
* from: Graphite [from time specification](#fromto) (optional. defaults to now-24hours)
84
+
* format: series-json, lastts-json. (defaults to series-json)
85
+
* limit: max number to return. (default: 0)
86
+
Note: the resultset is also subjected to the `http.max-series-per-req` config setting.
87
+
if the result set is larger than `http.max-series-per-req`, an error is returned. If it breaches the provided limit, the result is truncated.
88
+
* meta: If false and format is `series-json` then return series names as array (graphite compatibility). If true, include meta information like warnings. (defaults to false)
0 commit comments