-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
127 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
description: Bad Request | ||
description: Bad Request. | ||
content: | ||
application/json: | ||
schema: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
description: Not Found | ||
description: Not Found. | ||
content: | ||
text/plain: | ||
schema: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
title: probes | ||
type: array | ||
items: | ||
$ref: ./Metric.yml | ||
$ref: './Metric.yml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
get: | ||
summary: List incidents | ||
summary: List incidents. | ||
description: List known incidents for all clusters. | ||
operationId: getIncidents | ||
security: [] | ||
tags: | ||
- incidents | ||
responses: | ||
'200': | ||
$ref: ../common/responses/IncidentsResponse.yaml | ||
$ref: '../common/responses/IncidentsResponse.yaml' | ||
'401': | ||
$ref: ../common/responses/UnauthorizedResponse.yaml | ||
$ref: '../common/responses/UnauthorizedResponse.yaml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
get: | ||
summary: List incidents for selected clusters | ||
summary: List incidents for selected clusters. | ||
description: List known incidents for selected clusters. | ||
operationId: getIncidentsSingle | ||
tags: | ||
- incidents | ||
security: [] | ||
parameters: | ||
- $ref: ../common/parameters.yml/#Clusters | ||
- $ref: '../common/parameters.yml/#Clusters' | ||
responses: | ||
'200': | ||
$ref: ../common/responses/IncidentsResponse.yaml | ||
$ref: '../common/responses/IncidentsResponse.yaml' | ||
'401': | ||
$ref: ../common/responses/UnauthorizedResponse.yaml | ||
$ref: '../common/responses/UnauthorizedResponse.yaml' | ||
'404': | ||
$ref: ../common/responses/NotFoundResponse.yaml | ||
$ref: '../common/responses/NotFoundResponse.yaml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
get: | ||
summary: Get indexing times | ||
summary: Get indexing times. | ||
description: List the average times for indexing operations for selected clusters. | ||
operationId: getIndexingTime | ||
security: [] | ||
tags: | ||
- monitoring | ||
parameters: | ||
- $ref: ../common/parameters.yml#/Clusters | ||
- $ref: '../common/parameters.yml#/Clusters' | ||
responses: | ||
'200': | ||
$ref: ../common/responses/IndexingResponse.yaml | ||
$ref: '../common/responses/IndexingResponse.yaml' | ||
'400': | ||
$ref: ../common/responses/BadRequestResponse.yaml | ||
$ref: '../common/responses/BadRequestResponse.yaml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
get: | ||
summary: Get search latency times | ||
summary: Get search latency times. | ||
description: List the average latency for search requests for selected clusters. | ||
operationId: getLatency | ||
security: [] | ||
tags: | ||
- monitoring | ||
parameters: | ||
- $ref: ../common/parameters.yml#/Clusters | ||
- $ref: '../common/parameters.yml#/Clusters' | ||
responses: | ||
'200': | ||
$ref: ../common/responses/LatencyResponse.yaml | ||
$ref: '../common/responses/LatencyResponse.yaml' | ||
'400': | ||
$ref: ../common/responses/BadRequestResponse.yaml | ||
$ref: '../common/responses/BadRequestResponse.yaml' |
Oops, something went wrong.