Skip to content

650 - Server Inventory

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

maml
{
  servers: [
    {
      hostname: "worker-1"
      ip: "94.96.192.3"
      os: "Alpine 3.19"
      cpu_cores: 4
      memory_gb: 16
      status: "stopped"
    }

    {
      hostname: "web-4"
      ip: "237.50.152.103"
      os: "Amazon Linux 2023"
      cpu_cores: 16
      memory_gb: 32
      status: "stopped"
    }

    {
      hostname: "api-4"
      ip: "191.51.150.158"
      os: "Amazon Linux 2023"
      cpu_cores: 16
      memory_gb: 64
      status: "running"
    }

    {
      hostname: "api-5"
      ip: "24.170.45.210"
      os: "Debian 12"
      cpu_cores: 8
      memory_gb: 4
      status: "running"
    }
  ]
}

See Also