Skip to content

943 - Server Inventory

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

maml
{
  servers: [
    {
      hostname: "worker-1"
      ip: "13.64.68.170"
      os: "Debian 12"
      cpu_cores: 16
      memory_gb: 4
      status: "running"
    }

    {
      hostname: "web-6"
      ip: "190.216.162.15"
      os: "Ubuntu 22.04"
      cpu_cores: 16
      memory_gb: 8
      status: "maintenance"
    }

    {
      hostname: "web-9"
      ip: "94.228.251.204"
      os: "Amazon Linux 2023"
      cpu_cores: 2
      memory_gb: 8
      status: "maintenance"
    }

    {
      hostname: "worker-9"
      ip: "105.89.214.103"
      os: "Amazon Linux 2023"
      cpu_cores: 16
      memory_gb: 64
      status: "maintenance"
    }

    {
      hostname: "web-1"
      ip: "90.227.42.7"
      os: "Amazon Linux 2023"
      cpu_cores: 16
      memory_gb: 16
      status: "stopped"
    }
  ]
}

See Also