-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathcat.ml_datafeeds.json
65 lines (65 loc) · 1.85 KB
/
cat.ml_datafeeds.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"cat.ml_datafeeds": {
"documentation": {
"url": "http://www.elastic.co/guide/en/elasticsearch/reference/current/cat-datafeeds.html",
"description": "Gets configuration and usage information about datafeeds."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["text/plain", "application/json"]
},
"url": {
"paths": [
{
"path": "/_cat/ml/datafeeds",
"methods": ["GET"]
},
{
"path": "/_cat/ml/datafeeds/{datafeed_id}",
"methods": ["GET"],
"parts": {
"datafeed_id": {
"type": "string",
"description": "The ID of the datafeeds stats to fetch"
}
}
}
]
},
"params": {
"allow_no_match": {
"type": "boolean",
"required": false,
"description": "Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified)"
},
"format": {
"type": "string",
"description": "a short version of the Accept header, e.g. json, yaml"
},
"h": {
"type": "list",
"description": "Comma-separated list of column names to display"
},
"help": {
"type": "boolean",
"description": "Return help information",
"default": false
},
"s": {
"type": "list",
"description": "Comma-separated list of column names or column aliases to sort by"
},
"time": {
"type": "enum",
"description": "The unit in which to display time values",
"options": ["d", "h", "m", "s", "ms", "micros", "nanos"]
},
"v": {
"type": "boolean",
"description": "Verbose mode. Display column headers",
"default": false
}
}
}
}