New Relic · Schema

AppSummaryDataResponse

AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

Properties

Name Type Description
apdex_score number
error_rate number
instance_count integer
response_time number
throughput number
View JSON Schema on GitHub

JSON Schema

new-relic-appsummarydataresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AppSummaryDataResponse",
  "title": "AppSummaryDataResponse",
  "type": "object",
  "properties": {
    "apdex_score": {
      "type": "number",
      "format": "float",
      "example": 87.5
    },
    "error_rate": {
      "type": "number",
      "format": "float",
      "example": 12.3
    },
    "instance_count": {
      "type": "integer",
      "example": 42
    },
    "response_time": {
      "type": "number",
      "format": "float",
      "example": 42.5
    },
    "throughput": {
      "type": "number",
      "format": "float",
      "example": 42.5
    }
  }
}