AppDynamics · Schema

Application

A business application monitored by the AppDynamics Controller.

APMApplication Performance MonitoringCiscoCloud ObservabilityDevOpsMonitoringObservabilityOpenTelemetry

Properties

Name Type Description
id integer The internal numeric identifier for the application.
name string The name of the business application.
description string An optional description of the application.
View JSON Schema on GitHub

JSON Schema

appdynamics-application-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Application",
  "title": "Application",
  "type": "object",
  "description": "A business application monitored by the AppDynamics Controller.",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64",
      "description": "The internal numeric identifier for the application."
    },
    "name": {
      "type": "string",
      "description": "The name of the business application."
    },
    "description": {
      "type": "string",
      "description": "An optional description of the application."
    }
  }
}