AppDynamics · JSON Structure

Appdynamics Application Model Structure

Schema representing the AppDynamics application monitoring model including applications, tiers, nodes, business transactions, and backends.

Type: object Properties: 5
APMApplication Performance MonitoringCiscoCloud ObservabilityDevOpsMonitoringObservabilityOpenTelemetry

AppDynamics Application Model is a JSON Structure definition published by AppDynamics, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

applications tiers nodes businessTransactions backends

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/appdynamics/refs/heads/main/json-structure/appdynamics-application-model-structure.json",
  "name": "AppDynamics Application Model",
  "description": "Schema representing the AppDynamics application monitoring model including applications, tiers, nodes, business transactions, and backends.",
  "type": "object",
  "properties": {
    "applications": {
      "description": "The list of monitored business applications.",
      "items": {
        "$ref": "#/$defs/Application"
      },
      "type": "array"
    },
    "tiers": {
      "description": "The list of tiers within the application.",
      "items": {
        "$ref": "#/$defs/Tier"
      },
      "type": "array"
    },
    "nodes": {
      "description": "The list of nodes within the application.",
      "items": {
        "$ref": "#/$defs/Node"
      },
      "type": "array"
    },
    "businessTransactions": {
      "description": "The list of business transactions detected in the application.",
      "items": {
        "$ref": "#/$defs/BusinessTransaction"
      },
      "type": "array"
    },
    "backends": {
      "description": "The list of backend components detected in the application.",
      "items": {
        "$ref": "#/$defs/Backend"
      },
      "type": "array"
    }
  }
}