New Relic · JSON Structure

New Relic Metric Data Response Structure

Type: object Properties: 1
AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

MetricDataResponse is a JSON Structure definition published by New Relic, describing 1 property. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

metric_data

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "MetricDataResponse",
  "properties": {
    "metric_data": {
      "type": "object",
      "properties": {
        "from": {
          "type": "datetime"
        },
        "metrics": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string"
              },
              "timeslices": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "object"
                    },
                    "to": {
                      "type": "object"
                    },
                    "values": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          }
        },
        "metrics_found": {
          "type": "string"
        },
        "metrics_not_found": {
          "type": "string"
        },
        "to": {
          "type": "datetime"
        }
      }
    }
  },
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}