diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2018-11-07 12:19:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2018-11-07 12:20:17 +0000 |
commit | a64a253794ac64cb40befee54db53bde17dd0d49 (patch) | |
tree | c1024acc5f6e508814b944d99f112259bb28b1be /web/netdata-swagger.yaml | |
parent | New upstream version 1.10.0+dfsg (diff) | |
download | netdata-upstream/1.11.0+dfsg.tar.xz netdata-upstream/1.11.0+dfsg.zip |
New upstream version 1.11.0+dfsgupstream/1.11.0+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | web/api/netdata-swagger.yaml (renamed from web/netdata-swagger.yaml) | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/web/netdata-swagger.yaml b/web/api/netdata-swagger.yaml index a8abe1abf..58f19198f 100644 --- a/web/netdata-swagger.yaml +++ b/web/api/netdata-swagger.yaml @@ -1,10 +1,12 @@ +# SPDX-License-Identifier: GPL-3.0-or-later swagger: '2.0' info: title: NetData API - description: 'Real time data collection and graphs...' - version: 1.9.11_rolling + description: 'Real-time performance and health monitoring.' + version: 1.11.0_rolling host: registry.my-netdata.io schemes: + - https - http basePath: /api/v1 produces: @@ -92,7 +94,7 @@ paths: description: 'The grouping method. If multiple collected values are to be grouped in order to return fewer points, this parameters defines the method of grouping. methods supported "min", "max", "average", "sum", "incremental-sum". "max" is actually calculated on the absolute value collected (so it works for both positive and negative dimesions to return the most extreme value in either direction).' required: true type: string - enum: [ 'min', 'max', 'average', 'sum', 'incremental-sum' ] + enum: [ 'min', 'max', 'average', 'median', 'stddev', 'sum', 'incremental-sum' ] default: 'average' allowEmptyValue: false - name: gtime @@ -108,7 +110,7 @@ paths: description: 'The format of the data to be returned.' required: true type: string - enum: [ 'json', 'jsonp', 'csv', 'tsv', 'tsv-excel', 'ssv', 'ssvcomma', 'datatable', 'datasource', 'html', 'array', 'csvjsonarray' ] + enum: [ 'json', 'jsonp', 'csv', 'tsv', 'tsv-excel', 'ssv', 'ssvcomma', 'datatable', 'datasource', 'html', 'markdown', 'array', 'csvjsonarray' ] default: json allowEmptyValue: false - name: options @@ -202,7 +204,7 @@ paths: description: 'The grouping method. If multiple collected values are to be grouped in order to return fewer points, this parameters defines the method of grouping. methods are supported "min", "max", "average", "sum", "incremental-sum". "max" is actually calculated on the absolute value collected (so it works for both positive and negative dimesions to return the most extreme value in either direction).' required: true type: string - enum: [ 'min', 'max', 'average', 'sum', 'incremental-sum' ] + enum: [ 'min', 'max', 'average', 'median', 'stddev', 'sum', 'incremental-sum' ] default: 'average' allowEmptyValue: false - name: options |