Skip to content

1042 - Server Inventory

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

maml
{
  servers: [
    {
      hostname: "queue-1"
      ip: "77.234.9.123"
      os: "Amazon Linux 2023"
      cpu_cores: 8
      memory_gb: 4
      status: "stopped"
    }

    {
      hostname: "db-4"
      ip: "151.163.38.1"
      os: "Alpine 3.19"
      cpu_cores: 4
      memory_gb: 8
      status: "maintenance"
    }

    {
      hostname: "web-9"
      ip: "147.4.57.183"
      os: "Debian 12"
      cpu_cores: 2
      memory_gb: 8
      status: "running"
    }

    {
      hostname: "api-9"
      ip: "139.185.157.190"
      os: "Debian 12"
      cpu_cores: 8
      memory_gb: 64
      status: "stopped"
    }
  ]
}

See Also