Skip to content

2059 - Server Inventory

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

maml
{
  servers: [
    {
      hostname: "web-8"
      ip: "33.130.45.212"
      os: "Debian 12"
      cpu_cores: 4
      memory_gb: 8
      status: "maintenance"
    }

    {
      hostname: "api-1"
      ip: "79.216.63.42"
      os: "Amazon Linux 2023"
      cpu_cores: 2
      memory_gb: 8
      status: "maintenance"
    }

    {
      hostname: "web-9"
      ip: "244.168.201.158"
      os: "Ubuntu 22.04"
      cpu_cores: 8
      memory_gb: 64
      status: "stopped"
    }

    {
      hostname: "cache-2"
      ip: "120.47.217.131"
      os: "Ubuntu 22.04"
      cpu_cores: 16
      memory_gb: 8
      status: "maintenance"
    }
  ]
}

See Also