Skip to content

2060 - Server Inventory

Infrastructure server inventory. This is an example of a MAML document.

maml
{
  servers: [
    {
      hostname: "web-3"
      ip: "30.123.83.23"
      os: "Amazon Linux 2023"
      cpu_cores: 8
      memory_gb: 32
      status: "stopped"
    }

    {
      hostname: "cache-2"
      ip: "106.198.153.42"
      os: "Amazon Linux 2023"
      cpu_cores: 16
      memory_gb: 8
      status: "maintenance"
    }

    {
      hostname: "cache-9"
      ip: "171.229.51.95"
      os: "Amazon Linux 2023"
      cpu_cores: 16
      memory_gb: 32
      status: "maintenance"
    }

    {
      hostname: "queue-4"
      ip: "178.155.159.32"
      os: "Ubuntu 22.04"
      cpu_cores: 16
      memory_gb: 64
      status: "running"
    }
  ]
}

See Also