Merge pull request #6626 from claytono/fix-curl-args
Fix curl args for data-urlencode in docs
This commit is contained in:
commit
3b9304d22e
|
@ -236,7 +236,7 @@ The following example returns all series that match either of the selectors
|
|||
`up` or `process_start_time_seconds{job="prometheus"}`:
|
||||
|
||||
```json
|
||||
$ curl -g 'http://localhost:9090/api/v1/series?' --data-urlencode='match[]=up' --data-urlencode='match[]=process_start_time_seconds{job="prometheus"}'
|
||||
$ curl -g 'http://localhost:9090/api/v1/series?' --data-urlencode 'match[]=up' --data-urlencode 'match[]=process_start_time_seconds{job="prometheus"}'
|
||||
{
|
||||
"status" : "success",
|
||||
"data" : [
|
||||
|
|
Loading…
Reference in New Issue