New Relic · Schema
AppSummaryResponse
AppSummaryResponse schema
AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform
Properties
| Name | Type | Description |
|---|---|---|
| apdex_score | number | |
| apdex_target | number | |
| concurrent_instance_count | integer | |
| error_rate | number | |
| host_count | integer | |
| instance_count | integer | |
| response_time | number | |
| throughput | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/new-relic/refs/heads/main/json-schema/openapi-app-summary-response-schema.json",
"title": "AppSummaryResponse",
"description": "AppSummaryResponse schema",
"type": "object",
"properties": {
"apdex_score": {
"type": "number",
"format": "float",
"example": 87.5
},
"apdex_target": {
"type": "number",
"format": "float",
"example": 42.5
},
"concurrent_instance_count": {
"type": "integer",
"example": 42
},
"error_rate": {
"type": "number",
"format": "float",
"example": 12.3
},
"host_count": {
"type": "integer",
"example": 42
},
"instance_count": {
"type": "integer",
"example": 42
},
"response_time": {
"type": "number",
"format": "float",
"example": 42.5
},
"throughput": {
"type": "number",
"format": "float",
"example": 42.5
}
}
}