-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NET0460 query the details endpoint to collect perf stats
- Loading branch information
Showing
8 changed files
with
165 additions
and
29 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
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,22 +1,42 @@ | ||
{ | ||
"$id": "https://github.com/interuss/monitoring/blob/main/schemas/monitoring/monitorlib/fetch/Query.json", | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"type": "object", | ||
"description": "monitoring.monitorlib.fetch.Query, as defined in monitoring/monitorlib/fetch/__init__.py", | ||
"properties": { | ||
"$ref": { | ||
"type": "string", | ||
"description": "Path to content that replaces the $ref" | ||
"description": "Path to content that replaces the $ref", | ||
"type": "string" | ||
}, | ||
"response": { | ||
"$ref": "ResponseDescription.json" | ||
"query_type": { | ||
"description": "If specified, the recognized type of this query.", | ||
"enum": [ | ||
"astm.f3411.v22a.sp.flights", | ||
"astm.f3411.v19.sp.flights", | ||
"astm.f3411.v22a.sp.flight_details", | ||
"astm.f3411.v19.sp.flight_details" | ||
], | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
}, | ||
"request": { | ||
"$ref": "RequestDescription.json" | ||
}, | ||
"response": { | ||
"$ref": "ResponseDescription.json" | ||
}, | ||
"server_id": { | ||
"description": "If specified, identifier of the USS/participant hosting the server involved in this query.", | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
} | ||
}, | ||
"$id": "https://github.com/interuss/monitoring/blob/main/schemas/monitoring/monitorlib/fetch/Query.json", | ||
"description": "monitoring.monitorlib.fetch.Query, as defined in monitoring/monitorlib/fetch/__init__.py", | ||
"required": [ | ||
"request", | ||
"response" | ||
] | ||
], | ||
"type": "object" | ||
} |