Skip to content

2945 - Server Inventory

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

maml
{
  servers: [
    {
      hostname: "worker-4"
      ip: "7.199.172.135"
      os: "Amazon Linux 2023"
      cpu_cores: 16
      memory_gb: 32
      status: "running"
    }

    {
      hostname: "api-2"
      ip: "190.212.182.218"
      os: "Debian 12"
      cpu_cores: 8
      memory_gb: 32
      status: "stopped"
    }

    {
      hostname: "web-9"
      ip: "46.108.63.175"
      os: "Alpine 3.19"
      cpu_cores: 4
      memory_gb: 64
      status: "stopped"
    }

    {
      hostname: "db-1"
      ip: "103.77.8.62"
      os: "Amazon Linux 2023"
      cpu_cores: 16
      memory_gb: 64
      status: "running"
    }
  ]
}

See Also