Skip to content

656 - Server Inventory

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

maml
{
  servers: [
    {
      hostname: "web-4"
      ip: "9.252.252.122"
      os: "Ubuntu 22.04"
      cpu_cores: 2
      memory_gb: 32
      status: "running"
    }

    {
      hostname: "worker-4"
      ip: "201.34.45.55"
      os: "Debian 12"
      cpu_cores: 4
      memory_gb: 64
      status: "stopped"
    }

    {
      hostname: "api-7"
      ip: "23.61.134.128"
      os: "Amazon Linux 2023"
      cpu_cores: 8
      memory_gb: 4
      status: "running"
    }

    {
      hostname: "db-5"
      ip: "237.61.57.19"
      os: "Debian 12"
      cpu_cores: 2
      memory_gb: 32
      status: "running"
    }
  ]
}

See Also