New Relic · JSON Structure

New Relic Metric Summary Value Structure

Summary metric value containing statistical aggregations

Type: object Properties: 4 Required: 4
AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

SummaryValue is a JSON Structure definition published by New Relic, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

count sum min max

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

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Summary metric value containing statistical aggregations",
  "name": "SummaryValue",
  "properties": {
    "count": {
      "type": "number",
      "description": "The number of measurements in this summary"
    },
    "sum": {
      "type": "number",
      "description": "The sum of all measurement values"
    },
    "min": {
      "type": "number",
      "description": "The minimum measurement value"
    },
    "max": {
      "type": "number",
      "description": "The maximum measurement value"
    }
  },
  "required": [
    "count",
    "sum",
    "min",
    "max"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}