Skip to content

1359 - Server Inventory

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

maml
{
  servers: [
    {
      hostname: "cache-9"
      ip: "84.12.51.63"
      os: "Debian 12"
      cpu_cores: 8
      memory_gb: 4
      status: "maintenance"
    }

    {
      hostname: "db-7"
      ip: "131.27.133.224"
      os: "Debian 12"
      cpu_cores: 16
      memory_gb: 4
      status: "maintenance"
    }

    {
      hostname: "web-3"
      ip: "15.151.3.64"
      os: "Alpine 3.19"
      cpu_cores: 2
      memory_gb: 8
      status: "running"
    }

    {
      hostname: "api-7"
      ip: "163.38.152.123"
      os: "Debian 12"
      cpu_cores: 16
      memory_gb: 8
      status: "stopped"
    }

    {
      hostname: "web-4"
      ip: "64.154.100.245"
      os: "Alpine 3.19"
      cpu_cores: 8
      memory_gb: 32
      status: "running"
    }
  ]
}

See Also