New Relic · Schema

AppSummaryResponse

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
View JSON Schema on GitHub

JSON Schema

new-relic-app-summary-response-schema.json Raw ↑
{
  "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
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AppSummaryResponse"
}