AppDynamics · Schema

Tier

A tier within a monitored business application representing a logical grouping of nodes.

APMApplication Performance MonitoringCiscoCloud ObservabilityDevOpsMonitoringObservabilityOpenTelemetry

Properties

Name Type Description
id integer The internal numeric identifier for the tier.
name string The name of the tier.
type string The agent type associated with this tier.
agentType string The type of agent instrumentation used by the tier.
numberOfNodes integer The number of nodes belonging to this tier.
View JSON Schema on GitHub

JSON Schema

appdynamics-tier-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Tier",
  "title": "Tier",
  "type": "object",
  "description": "A tier within a monitored business application representing a logical grouping of nodes.",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64",
      "description": "The internal numeric identifier for the tier."
    },
    "name": {
      "type": "string",
      "description": "The name of the tier."
    },
    "type": {
      "type": "string",
      "description": "The agent type associated with this tier."
    },
    "agentType": {
      "type": "string",
      "description": "The type of agent instrumentation used by the tier."
    },
    "numberOfNodes": {
      "type": "integer",
      "description": "The number of nodes belonging to this tier."
    }
  }
}