yats.git

ref: 78c4242f845ddf5b1ba8f36e29727680632b75db

server/docs/swagger.yaml


  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
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
basePath: /
definitions:
  model.EventModel:
    properties:
      etime:
        type: integer
      id_client:
        type: string
      name:
        type: string
    type: object
  model.EventSearchRequest:
    properties:
      from:
        type: integer
      id_client:
        type: string
      to:
        type: integer
    type: object
  model.MetricModel:
    properties:
      id_client:
        type: string
      mtime:
        type: integer
      name:
        type: string
      value:
        type: string
    type: object
  model.MetricSearchRequest:
    properties:
      from:
        type: integer
      id_client:
        type: string
      name:
        type: string
      to:
        type: integer
    type: object
  model.PositionModel:
    properties:
      id_client:
        type: string
      lat:
        description: TODO Check parquet types
        type: number
      lon:
        description: TODO Check parquet types
        type: number
      name:
        type: string
      ptime:
        type: integer
    type: object
externalDocs:
  description: OpenAPI
  url: https://swagger.io/resources/open-api/
info:
  contact:
    email: TODO
    name: API Support
    url: https:// TODO
  description: Yet Another Time Serie
  license:
    name: Affero GPL
    url: https://www.gnu.org/licenses/agpl-3.0.en.html#license-text
  termsOfService: https://kevwe.com/ TODO
  title: Yats Server
  version: "1.0"
paths:
  /event:
    post:
      consumes:
      - application/json
      description: store events
      parameters:
      - description: clientCN
        in: header
        name: X-SSL-Client-CN
        required: true
        type: string
      - description: Event body data
        in: body
        name: event1
        required: true
        schema:
          $ref: '#/definitions/model.EventModel'
      produces:
      - application/json
      responses:
        "202":
          description: Accepted
          schema:
            type: string
      summary: write event to db
      tags:
      - Events
  /event/{from}:
    get:
      consumes:
      - application/json
      description: retrieve events  from timestamp {from}
      parameters:
      - description: clientCN
        in: header
        name: X-SSL-Client-CN
        required: true
        type: string
      - description: Event query filters
        in: body
        name: event2
        required: true
        schema:
          $ref: '#/definitions/model.EventSearchRequest'
      - description: Starting from timestamp :from
        in: path
        name: from
        required: true
        type: string
      produces:
      - application/json
      responses:
        "200":
          description: OK
          schema:
            type: string
      summary: Get the events from timestamp {from}
      tags:
      - Events
  /event/search:
    post:
      consumes:
      - application/json
      description: retrieve events in the specified time window
      parameters:
      - description: clientCN
        in: header
        name: X-SSL-Client-CN
        required: true
        type: string
      - description: Event query filters
        in: body
        name: event2
        required: true
        schema:
          $ref: '#/definitions/model.EventSearchRequest'
      produces:
      - application/json
      responses:
        "200":
          description: OK
          schema:
            type: string
      summary: Get the events From ... and To when present
      tags:
      - Events
  /metric:
    post:
      consumes:
      - application/json
      description: store metric
      parameters:
      - description: clientCN
        in: header
        name: X-SSL-Client-CN
        required: true
        type: string
      - description: Metric request body
        in: body
        name: metric2
        required: true
        schema:
          $ref: '#/definitions/model.MetricModel'
      produces:
      - application/json
      responses:
        "202":
          description: Accepted
          schema:
            type: string
      summary: write metric to db
      tags:
      - Metrics
  /metric/{name}/{from}:
    get:
      description: search metrics after the specified timestamp
      parameters:
      - description: clientCN
        in: header
        name: X-SSL-Client-CN
        required: true
        type: string
      - description: Metric Name :name
        in: path
        name: name
        required: true
        type: string
      - description: Starting from epoch :from
        in: path
        name: from
        required: true
        type: string
      produces:
      - application/json
      responses:
        "200":
          description: OK
          schema:
            type: string
      summary: Get the specific metric {name} starting from the epoch {from}
      tags:
      - Metrics
  /metric/search:
    post:
      consumes:
      - application/json
      description: search metrics in the specified timeframe
      parameters:
      - description: clientCN
        in: header
        name: X-SSL-Client-CN
        required: true
        type: string
      - description: Metric query filters
        in: body
        name: metric1
        required: true
        schema:
          $ref: '#/definitions/model.MetricSearchRequest'
      produces:
      - application/json
      responses:
        "200":
          description: OK
          schema:
            type: string
      summary: Get the metrics From ... and To when present
      tags:
      - Metrics
  /position:
    post:
      consumes:
      - application/json
      description: store position
      parameters:
      - description: clientCN
        in: header
        name: X-SSL-Client-CN
        required: true
        type: string
      - description: Position body data
        in: body
        name: position
        required: true
        schema:
          $ref: '#/definitions/model.PositionModel'
      produces:
      - application/json
      responses:
        "202":
          description: Accepted
          schema:
            type: string
      summary: write position to db
      tags:
      - Positions
swagger: "2.0"