Upgrade dependencies. Prepare 1.5.0 release

Entire-Checkpoint: 37abb99fe6a7
This commit is contained in:
2026-03-06 12:12:41 +01:00
parent b19dcdb21c
commit bdf65b16a9
11 changed files with 203 additions and 279 deletions

View File

@@ -1,8 +1,3 @@
// Copyright (C) NHR@FAU, University Erlangen-Nuremberg.
// All rights reserved. This file is part of cc-metric-store.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// Package api Code generated by swaggo/swag. DO NOT EDIT
package api
@@ -30,11 +25,6 @@ const docTemplate = `{
"paths": {
"/debug/": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "This endpoint allows the users to print the content of",
"produces": [
"application/json"
@@ -82,16 +72,16 @@ const docTemplate = `{
"$ref": "#/definitions/api.ErrorResponse"
}
}
}
}
},
"/free/": {
"post": {
},
"security": [
{
"ApiKeyAuth": []
}
],
]
}
},
"/free/": {
"post": {
"description": "This endpoint allows the users to free the Buffers from the",
"produces": [
"application/json"
@@ -138,16 +128,16 @@ const docTemplate = `{
"$ref": "#/definitions/api.ErrorResponse"
}
}
}
}
},
"/healthcheck/": {
"get": {
},
"security": [
{
"ApiKeyAuth": []
}
],
]
}
},
"/healthcheck/": {
"get": {
"description": "This endpoint allows the users to check if a node is healthy",
"produces": [
"application/json"
@@ -195,16 +185,16 @@ const docTemplate = `{
"$ref": "#/definitions/api.ErrorResponse"
}
}
}
}
},
"/query/": {
"get": {
},
"security": [
{
"ApiKeyAuth": []
}
],
]
}
},
"/query/": {
"get": {
"description": "This endpoint allows the users to retrieve data from the",
"consumes": [
"application/json"
@@ -223,7 +213,7 @@ const docTemplate = `{
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/api.ApiQueryRequest"
"$ref": "#/definitions/api.APIQueryRequest"
}
}
],
@@ -231,7 +221,7 @@ const docTemplate = `{
"200": {
"description": "API query response object",
"schema": {
"$ref": "#/definitions/api.ApiQueryResponse"
"$ref": "#/definitions/api.APIQueryResponse"
}
},
"400": {
@@ -258,16 +248,16 @@ const docTemplate = `{
"$ref": "#/definitions/api.ErrorResponse"
}
}
}
}
},
"/write/": {
"post": {
},
"security": [
{
"ApiKeyAuth": []
}
],
]
}
},
"/write/": {
"post": {
"consumes": [
"text/plain"
],
@@ -313,12 +303,17 @@ const docTemplate = `{
"$ref": "#/definitions/api.ErrorResponse"
}
}
}
},
"security": [
{
"ApiKeyAuth": []
}
]
}
}
},
"definitions": {
"api.ApiMetricData": {
"api.APIMetricData": {
"type": "object",
"properties": {
"avg": {
@@ -350,7 +345,7 @@ const docTemplate = `{
}
}
},
"api.ApiQuery": {
"api.APIQuery": {
"type": "object",
"properties": {
"aggreg": {
@@ -388,7 +383,7 @@ const docTemplate = `{
}
}
},
"api.ApiQueryRequest": {
"api.APIQueryRequest": {
"type": "object",
"properties": {
"cluster": {
@@ -406,7 +401,7 @@ const docTemplate = `{
"queries": {
"type": "array",
"items": {
"$ref": "#/definitions/api.ApiQuery"
"$ref": "#/definitions/api.APIQuery"
}
},
"to": {
@@ -423,13 +418,13 @@ const docTemplate = `{
}
}
},
"api.ApiQueryResponse": {
"api.APIQueryResponse": {
"type": "object",
"properties": {
"queries": {
"type": "array",
"items": {
"$ref": "#/definitions/api.ApiQuery"
"$ref": "#/definitions/api.APIQuery"
}
},
"results": {
@@ -437,7 +432,7 @@ const docTemplate = `{
"items": {
"type": "array",
"items": {
"$ref": "#/definitions/api.ApiMetricData"
"$ref": "#/definitions/api.APIMetricData"
}
}
}