Censys · Schema
Prometheus_Response
Prometheus_Response schema from Asset Graph API
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery
Properties
| Name | Type | Description |
|---|---|---|
| active_targets | arraynull | List of active targets. |
| all_versions | arraynull | List of the versions of everything that Prometheus finds i.e., version of Prometheus, Go, Node, cAdvisor, etc. |
| config_exposed | boolean | True when the config endpoint is exposed. |
| dropped_targets | arraynull | List of dropped targets. |
| go_versions | arraynull | List of the versions of Go. |
| prometheus_versions | arraynull |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/asset-graph-prometheus-response-schema.json",
"title": "Prometheus_Response",
"description": "Prometheus_Response schema from Asset Graph API",
"type": "object",
"properties": {
"active_targets": {
"description": "List of active targets.",
"items": {
"$ref": "#/components/schemas/Prometheus_Response_ActiveTarget"
},
"type": [
"array",
"null"
]
},
"all_versions": {
"description": "List of the versions of everything that Prometheus finds i.e., version of Prometheus, Go, Node, cAdvisor, etc.",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"config_exposed": {
"description": "True when the config endpoint is exposed.",
"type": "boolean"
},
"dropped_targets": {
"description": "List of dropped targets.",
"items": {
"$ref": "#/components/schemas/Prometheus_Response_DroppedTarget"
},
"type": [
"array",
"null"
]
},
"go_versions": {
"description": "List of the versions of Go.",
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"prometheus_versions": {
"items": {
"$ref": "#/components/schemas/Prometheus_Response_PrometheusVersion"
},
"type": [
"array",
"null"
]
}
},
"additionalProperties": false
}