AppDynamics · Schema

Node

A node within a tier representing a single application instance or JVM/CLR process.

APMApplication Performance MonitoringCiscoCloud ObservabilityDevOpsMonitoringObservabilityOpenTelemetry

Properties

Name Type Description
id integer The internal numeric identifier for the node.
name string The name of the node.
type string The agent type associated with this node.
tierId integer The numeric ID of the tier this node belongs to.
tierName string The name of the tier this node belongs to.
machineId integer The numeric ID of the machine hosting this node.
machineName string The name of the machine hosting this node.
machineOSType string The operating system type of the host machine.
ipAddresses object The IP addresses associated with this node.
agentType string The type of agent instrumentation used by the node.
appAgentVersion string The version of the application agent running on this node.
machineAgentVersion string The version of the machine agent running on the host.
View JSON Schema on GitHub

JSON Schema

appdynamics-node-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Node",
  "title": "Node",
  "type": "object",
  "description": "A node within a tier representing a single application instance or JVM/CLR process.",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64",
      "description": "The internal numeric identifier for the node."
    },
    "name": {
      "type": "string",
      "description": "The name of the node."
    },
    "type": {
      "type": "string",
      "description": "The agent type associated with this node."
    },
    "tierId": {
      "type": "integer",
      "format": "int64",
      "description": "The numeric ID of the tier this node belongs to."
    },
    "tierName": {
      "type": "string",
      "description": "The name of the tier this node belongs to."
    },
    "machineId": {
      "type": "integer",
      "format": "int64",
      "description": "The numeric ID of the machine hosting this node."
    },
    "machineName": {
      "type": "string",
      "description": "The name of the machine hosting this node."
    },
    "machineOSType": {
      "type": "string",
      "description": "The operating system type of the host machine."
    },
    "ipAddresses": {
      "type": "object",
      "description": "The IP addresses associated with this node."
    },
    "agentType": {
      "type": "string",
      "description": "The type of agent instrumentation used by the node."
    },
    "appAgentVersion": {
      "type": "string",
      "description": "The version of the application agent running on this node."
    },
    "machineAgentVersion": {
      "type": "string",
      "description": "The version of the machine agent running on the host."
    }
  }
}