AppDynamics · JSON Structure

Appdynamics Analytics Event Structure

Schema representing a custom analytics event and its schema definition for the AppDynamics Events Service.

Type: object Properties: 3
APMApplication Performance MonitoringCiscoCloud ObservabilityDevOpsMonitoringObservabilityOpenTelemetry

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

Properties

schemaName schema events

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-analytics-event-structure.json",
  "name": "AppDynamics Analytics Event",
  "description": "Schema representing a custom analytics event and its schema definition for the AppDynamics Events Service.",
  "type": "object",
  "properties": {
    "schemaName": {
      "description": "The name of the custom event schema.",
      "minLength": 1,
      "maxLength": 255,
      "pattern": "^[a-zA-Z][a-zA-Z0-9_]*$",
      "type": "string"
    },
    "schema": {
      "$ref": "#/$defs/EventSchema",
      "description": "The schema definition for this event type.",
      "type": null
    },
    "events": {
      "description": "Array of event data objects conforming to the schema.",
      "items": {
        "type": "object"
      },
      "type": "array"
    }
  }
}