NOISSUE - Update timescale reader (#2085)

Signed-off-by: Musilah <nataleigh.nk@gmail.com>
Signed-off-by: Rodney Osodo <28790446+rodneyosodo@users.noreply.github.com>
Co-authored-by: Rodney Osodo <28790446+rodneyosodo@users.noreply.github.com>
This commit is contained in:
Nataly Musilah
2024-03-05 14:12:55 +03:00
committed by GitHub
parent 2be34c42f4
commit 42d433a92f
11 changed files with 298 additions and 27 deletions
+38 -7
View File
@@ -26,7 +26,7 @@ servers:
- url: https://localhost:9009
- url: http://localhost:9011
- url: https://localhost:9011
tags:
- name: readers
description: Everything about your Readers
@@ -57,14 +57,16 @@ paths:
- $ref: "#/components/parameters/DataValue"
- $ref: "#/components/parameters/From"
- $ref: "#/components/parameters/To"
- $ref: "#/components/parameters/Aggregation"
- $ref: "#/components/parameters/Interval"
responses:
'200':
"200":
$ref: "#/components/responses/MessagesPageRes"
'400':
"400":
description: Failed due to malformed query parameters.
'401':
"401":
description: Missing or invalid access token provided.
'500':
"500":
$ref: "#/components/responses/ServiceError"
/health:
get:
@@ -72,9 +74,9 @@ paths:
tags:
- health
responses:
'200':
"200":
$ref: "#/components/responses/HealthRes"
'500':
"500":
$ref: "#/components/responses/ServiceError"
components:
@@ -226,6 +228,7 @@ components:
in: query
schema:
type: number
example: 1709218556069
required: false
To:
name: to
@@ -233,6 +236,34 @@ components:
in: query
schema:
type: number
example: 1709218757503
required: false
Aggregation:
name: aggregation
description: Aggregation function.
in: query
schema:
type: string
enum:
- MAX
- AVG
- MIN
- SUM
- COUNT
- max
- min
- sum
- avg
- count
example: MAX
required: false
Interval:
name: interval
description: Aggregation interval.
in: query
schema:
type: string
example: 10s
required: false
responses: