mirror of
https://github.com/bloomberg/goldpinger.git
synced 2026-04-09 20:06:52 +00:00
Rename the swagger field from path-length to hop-count so the generated Go struct field (PathLength → HopCount) and JSON key (path-length → hop-count) align with the Prometheus metric rename to goldpinger_peers_hop_count from the previous commit. Signed-off-by: Cooper Ry Lees <me@cooperlees.com> Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
719 lines
17 KiB
Go
719 lines
17 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package restapi
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
var (
|
|
// SwaggerJSON embedded version of the swagger document used at generation time
|
|
SwaggerJSON json.RawMessage
|
|
// FlatSwaggerJSON embedded flattened version of the swagger document used at generation time
|
|
FlatSwaggerJSON json.RawMessage
|
|
)
|
|
|
|
func init() {
|
|
SwaggerJSON = json.RawMessage([]byte(`{
|
|
"swagger": "2.0",
|
|
"info": {
|
|
"title": "Goldpinger",
|
|
"version": "3.0.0"
|
|
},
|
|
"paths": {
|
|
"/check": {
|
|
"get": {
|
|
"description": "Queries the API server for all other pods in this service, and pings them via their pods IPs. Calls their /ping endpoint",
|
|
"produces": [
|
|
"application/json"
|
|
],
|
|
"operationId": "checkServicePods",
|
|
"responses": {
|
|
"200": {
|
|
"description": "Success, return response",
|
|
"schema": {
|
|
"$ref": "#/definitions/CheckResults"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"/check_all": {
|
|
"get": {
|
|
"description": "Queries the API server for all other pods in this service, and makes all of them query all of their neighbours, using their pods IPs. Calls their /check endpoint.",
|
|
"produces": [
|
|
"application/json"
|
|
],
|
|
"operationId": "checkAllPods",
|
|
"responses": {
|
|
"200": {
|
|
"description": "Success, return response",
|
|
"schema": {
|
|
"$ref": "#/definitions/CheckAllResults"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"/cluster_health": {
|
|
"get": {
|
|
"description": "Checks the full graph. Returns a binary OK or not OK.",
|
|
"produces": [
|
|
"application/json"
|
|
],
|
|
"operationId": "clusterHealth",
|
|
"responses": {
|
|
"200": {
|
|
"description": "Healthy cluster",
|
|
"schema": {
|
|
"$ref": "#/definitions/ClusterHealthResults"
|
|
}
|
|
},
|
|
"418": {
|
|
"description": "Unhealthy cluster",
|
|
"schema": {
|
|
"$ref": "#/definitions/ClusterHealthResults"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"/healthz": {
|
|
"get": {
|
|
"description": "The healthcheck endpoint provides detailed information about the health of a web service. If each of the components required by the service are healthy, then the service is considered healthy and will return a 200 OK response. If any of the components needed by the service are unhealthy, then a 503 Service Unavailable response will be provided.",
|
|
"produces": [
|
|
"application/json"
|
|
],
|
|
"operationId": "healthz",
|
|
"responses": {
|
|
"200": {
|
|
"description": "Health check report",
|
|
"schema": {
|
|
"$ref": "#/definitions/HealthCheckResults"
|
|
}
|
|
},
|
|
"503": {
|
|
"description": "Unhealthy service",
|
|
"schema": {
|
|
"$ref": "#/definitions/HealthCheckResults"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"/ping": {
|
|
"get": {
|
|
"description": "return query stats",
|
|
"produces": [
|
|
"application/json"
|
|
],
|
|
"operationId": "ping",
|
|
"responses": {
|
|
"200": {
|
|
"description": "return success",
|
|
"schema": {
|
|
"$ref": "#/definitions/PingResults"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"definitions": {
|
|
"CallStats": {
|
|
"properties": {
|
|
"check": {
|
|
"type": "integer"
|
|
},
|
|
"check_all": {
|
|
"type": "integer"
|
|
},
|
|
"ping": {
|
|
"type": "integer"
|
|
}
|
|
}
|
|
},
|
|
"CheckAllPodResult": {
|
|
"type": "object",
|
|
"properties": {
|
|
"HostIP": {
|
|
"type": "string",
|
|
"format": "ipv4"
|
|
},
|
|
"OK": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"PodIP": {
|
|
"type": "string",
|
|
"format": "ipv4"
|
|
},
|
|
"error": {
|
|
"type": "string"
|
|
},
|
|
"response": {
|
|
"$ref": "#/definitions/CheckResults"
|
|
},
|
|
"status-code": {
|
|
"type": "integer",
|
|
"format": "int32"
|
|
}
|
|
}
|
|
},
|
|
"CheckAllResults": {
|
|
"type": "object",
|
|
"properties": {
|
|
"OK": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"hosts": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"hostIP": {
|
|
"type": "string",
|
|
"format": "ipv4"
|
|
},
|
|
"podIP": {
|
|
"type": "string",
|
|
"format": "ipv4"
|
|
},
|
|
"podName": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"hosts-healthy": {
|
|
"type": "integer",
|
|
"format": "int32"
|
|
},
|
|
"hosts-number": {
|
|
"type": "integer",
|
|
"format": "int32"
|
|
},
|
|
"probeResults": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"$ref": "#/definitions/ProbeResults"
|
|
}
|
|
},
|
|
"responses": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"$ref": "#/definitions/CheckAllPodResult"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"CheckResults": {
|
|
"type": "object",
|
|
"properties": {
|
|
"podResults": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"$ref": "#/definitions/PodResult"
|
|
}
|
|
},
|
|
"probeResults": {
|
|
"$ref": "#/definitions/ProbeResults"
|
|
}
|
|
}
|
|
},
|
|
"ClusterHealthResults": {
|
|
"type": "object",
|
|
"required": [
|
|
"OK"
|
|
],
|
|
"properties": {
|
|
"OK": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"duration-ns": {
|
|
"type": "integer",
|
|
"format": "int64"
|
|
},
|
|
"generated-at": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"nodesHealthy": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"nodesTotal": {
|
|
"type": "integer",
|
|
"format": "int64"
|
|
},
|
|
"nodesUnhealthy": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"HealthCheckResults": {
|
|
"type": "object",
|
|
"properties": {
|
|
"OK": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"duration-ns": {
|
|
"type": "integer",
|
|
"format": "int64"
|
|
},
|
|
"generated-at": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
}
|
|
}
|
|
},
|
|
"PingResults": {
|
|
"type": "object",
|
|
"properties": {
|
|
"boot_time": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"received": {
|
|
"$ref": "#/definitions/CallStats"
|
|
}
|
|
}
|
|
},
|
|
"PodResult": {
|
|
"type": "object",
|
|
"properties": {
|
|
"HostIP": {
|
|
"type": "string",
|
|
"format": "ipv4"
|
|
},
|
|
"OK": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"PingTime": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"PodIP": {
|
|
"type": "string",
|
|
"format": "ipv4"
|
|
},
|
|
"error": {
|
|
"type": "string"
|
|
},
|
|
"hop-count": {
|
|
"description": "estimated network hop count from UDP TTL",
|
|
"type": "integer",
|
|
"format": "int32"
|
|
},
|
|
"loss-pct": {
|
|
"description": "UDP packet loss percentage (0-100)",
|
|
"type": "number",
|
|
"format": "double"
|
|
},
|
|
"response": {
|
|
"$ref": "#/definitions/PingResults"
|
|
},
|
|
"response-time-ms": {
|
|
"description": "wall clock time in milliseconds",
|
|
"type": "number",
|
|
"format": "int64"
|
|
},
|
|
"status-code": {
|
|
"type": "integer",
|
|
"format": "int32"
|
|
},
|
|
"udp-rtt-ms": {
|
|
"description": "average UDP round-trip time in milliseconds",
|
|
"type": "number",
|
|
"format": "double"
|
|
}
|
|
}
|
|
},
|
|
"ProbeResult": {
|
|
"properties": {
|
|
"error": {
|
|
"type": "string"
|
|
},
|
|
"protocol": {
|
|
"type": "string"
|
|
},
|
|
"response-time-ms": {
|
|
"type": "number",
|
|
"format": "int64"
|
|
}
|
|
}
|
|
},
|
|
"ProbeResults": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/ProbeResult"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}`))
|
|
FlatSwaggerJSON = json.RawMessage([]byte(`{
|
|
"swagger": "2.0",
|
|
"info": {
|
|
"title": "Goldpinger",
|
|
"version": "3.0.0"
|
|
},
|
|
"paths": {
|
|
"/check": {
|
|
"get": {
|
|
"description": "Queries the API server for all other pods in this service, and pings them via their pods IPs. Calls their /ping endpoint",
|
|
"produces": [
|
|
"application/json"
|
|
],
|
|
"operationId": "checkServicePods",
|
|
"responses": {
|
|
"200": {
|
|
"description": "Success, return response",
|
|
"schema": {
|
|
"$ref": "#/definitions/CheckResults"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"/check_all": {
|
|
"get": {
|
|
"description": "Queries the API server for all other pods in this service, and makes all of them query all of their neighbours, using their pods IPs. Calls their /check endpoint.",
|
|
"produces": [
|
|
"application/json"
|
|
],
|
|
"operationId": "checkAllPods",
|
|
"responses": {
|
|
"200": {
|
|
"description": "Success, return response",
|
|
"schema": {
|
|
"$ref": "#/definitions/CheckAllResults"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"/cluster_health": {
|
|
"get": {
|
|
"description": "Checks the full graph. Returns a binary OK or not OK.",
|
|
"produces": [
|
|
"application/json"
|
|
],
|
|
"operationId": "clusterHealth",
|
|
"responses": {
|
|
"200": {
|
|
"description": "Healthy cluster",
|
|
"schema": {
|
|
"$ref": "#/definitions/ClusterHealthResults"
|
|
}
|
|
},
|
|
"418": {
|
|
"description": "Unhealthy cluster",
|
|
"schema": {
|
|
"$ref": "#/definitions/ClusterHealthResults"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"/healthz": {
|
|
"get": {
|
|
"description": "The healthcheck endpoint provides detailed information about the health of a web service. If each of the components required by the service are healthy, then the service is considered healthy and will return a 200 OK response. If any of the components needed by the service are unhealthy, then a 503 Service Unavailable response will be provided.",
|
|
"produces": [
|
|
"application/json"
|
|
],
|
|
"operationId": "healthz",
|
|
"responses": {
|
|
"200": {
|
|
"description": "Health check report",
|
|
"schema": {
|
|
"$ref": "#/definitions/HealthCheckResults"
|
|
}
|
|
},
|
|
"503": {
|
|
"description": "Unhealthy service",
|
|
"schema": {
|
|
"$ref": "#/definitions/HealthCheckResults"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"/ping": {
|
|
"get": {
|
|
"description": "return query stats",
|
|
"produces": [
|
|
"application/json"
|
|
],
|
|
"operationId": "ping",
|
|
"responses": {
|
|
"200": {
|
|
"description": "return success",
|
|
"schema": {
|
|
"$ref": "#/definitions/PingResults"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"definitions": {
|
|
"CallStats": {
|
|
"properties": {
|
|
"check": {
|
|
"type": "integer"
|
|
},
|
|
"check_all": {
|
|
"type": "integer"
|
|
},
|
|
"ping": {
|
|
"type": "integer"
|
|
}
|
|
}
|
|
},
|
|
"CheckAllPodResult": {
|
|
"type": "object",
|
|
"properties": {
|
|
"HostIP": {
|
|
"type": "string",
|
|
"format": "ipv4"
|
|
},
|
|
"OK": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"PodIP": {
|
|
"type": "string",
|
|
"format": "ipv4"
|
|
},
|
|
"error": {
|
|
"type": "string"
|
|
},
|
|
"response": {
|
|
"$ref": "#/definitions/CheckResults"
|
|
},
|
|
"status-code": {
|
|
"type": "integer",
|
|
"format": "int32"
|
|
}
|
|
}
|
|
},
|
|
"CheckAllResults": {
|
|
"type": "object",
|
|
"properties": {
|
|
"OK": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"hosts": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/CheckAllResultsHostsItems0"
|
|
}
|
|
},
|
|
"hosts-healthy": {
|
|
"type": "integer",
|
|
"format": "int32"
|
|
},
|
|
"hosts-number": {
|
|
"type": "integer",
|
|
"format": "int32"
|
|
},
|
|
"probeResults": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"$ref": "#/definitions/ProbeResults"
|
|
}
|
|
},
|
|
"responses": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"$ref": "#/definitions/CheckAllPodResult"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"CheckAllResultsHostsItems0": {
|
|
"type": "object",
|
|
"properties": {
|
|
"hostIP": {
|
|
"type": "string",
|
|
"format": "ipv4"
|
|
},
|
|
"podIP": {
|
|
"type": "string",
|
|
"format": "ipv4"
|
|
},
|
|
"podName": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"CheckResults": {
|
|
"type": "object",
|
|
"properties": {
|
|
"podResults": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"$ref": "#/definitions/PodResult"
|
|
}
|
|
},
|
|
"probeResults": {
|
|
"$ref": "#/definitions/ProbeResults"
|
|
}
|
|
}
|
|
},
|
|
"ClusterHealthResults": {
|
|
"type": "object",
|
|
"required": [
|
|
"OK"
|
|
],
|
|
"properties": {
|
|
"OK": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"duration-ns": {
|
|
"type": "integer",
|
|
"format": "int64"
|
|
},
|
|
"generated-at": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"nodesHealthy": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"nodesTotal": {
|
|
"type": "integer",
|
|
"format": "int64"
|
|
},
|
|
"nodesUnhealthy": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"HealthCheckResults": {
|
|
"type": "object",
|
|
"properties": {
|
|
"OK": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"duration-ns": {
|
|
"type": "integer",
|
|
"format": "int64"
|
|
},
|
|
"generated-at": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
}
|
|
}
|
|
},
|
|
"PingResults": {
|
|
"type": "object",
|
|
"properties": {
|
|
"boot_time": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"received": {
|
|
"$ref": "#/definitions/CallStats"
|
|
}
|
|
}
|
|
},
|
|
"PodResult": {
|
|
"type": "object",
|
|
"properties": {
|
|
"HostIP": {
|
|
"type": "string",
|
|
"format": "ipv4"
|
|
},
|
|
"OK": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"PingTime": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"PodIP": {
|
|
"type": "string",
|
|
"format": "ipv4"
|
|
},
|
|
"error": {
|
|
"type": "string"
|
|
},
|
|
"hop-count": {
|
|
"description": "estimated network hop count from UDP TTL",
|
|
"type": "integer",
|
|
"format": "int32"
|
|
},
|
|
"loss-pct": {
|
|
"description": "UDP packet loss percentage (0-100)",
|
|
"type": "number",
|
|
"format": "double"
|
|
},
|
|
"response": {
|
|
"$ref": "#/definitions/PingResults"
|
|
},
|
|
"response-time-ms": {
|
|
"description": "wall clock time in milliseconds",
|
|
"type": "number",
|
|
"format": "int64"
|
|
},
|
|
"status-code": {
|
|
"type": "integer",
|
|
"format": "int32"
|
|
},
|
|
"udp-rtt-ms": {
|
|
"description": "average UDP round-trip time in milliseconds",
|
|
"type": "number",
|
|
"format": "double"
|
|
}
|
|
}
|
|
},
|
|
"ProbeResult": {
|
|
"properties": {
|
|
"error": {
|
|
"type": "string"
|
|
},
|
|
"protocol": {
|
|
"type": "string"
|
|
},
|
|
"response-time-ms": {
|
|
"type": "number",
|
|
"format": "int64"
|
|
}
|
|
}
|
|
},
|
|
"ProbeResults": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/ProbeResult"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}`))
|
|
}
|