New Relic · Schema

ApplicationHostResponseType

AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

Properties

Name Type Description
host string
application_name string
application_summary object
end_user_summary object
health_status string
id integer
language integer
links object
View JSON Schema on GitHub

JSON Schema

new-relic-application-host-response-type-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "host": {
      "type": "string",
      "example": "example_string"
    },
    "application_name": {
      "type": "string",
      "example": "example_string"
    },
    "application_summary": {
      "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
        }
      }
    },
    "end_user_summary": {
      "type": "object",
      "properties": {
        "apdex_score": {
          "type": "number",
          "format": "float",
          "example": 87.5
        },
        "response_time": {
          "type": "number",
          "format": "float",
          "example": 42.5
        },
        "throughput": {
          "type": "number",
          "format": "float",
          "example": 42.5
        }
      }
    },
    "health_status": {
      "type": "string",
      "example": "active"
    },
    "id": {
      "type": "integer",
      "example": 100
    },
    "language": {
      "type": "integer",
      "example": 100
    },
    "links": {
      "type": "object",
      "properties": {
        "application": {
          "type": "integer",
          "example": 100
        },
        "application_instances": {
          "type": "array",
          "example": [
            100
          ],
          "items": {
            "type": "integer"
          }
        },
        "server": {
          "type": "integer",
          "example": 100
        }
      }
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ApplicationHostResponseType"
}