Skip to content

342 - Server Inventory

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

maml
{
  servers: [
    {
      hostname: "queue-3"
      ip: "204.23.95.46"
      os: "Alpine 3.19"
      cpu_cores: 8
      memory_gb: 4
      status: "running"
    }

    {
      hostname: "cache-7"
      ip: "95.207.197.13"
      os: "Debian 12"
      cpu_cores: 16
      memory_gb: 32
      status: "stopped"
    }

    {
      hostname: "web-5"
      ip: "166.202.240.148"
      os: "Amazon Linux 2023"
      cpu_cores: 16
      memory_gb: 8
      status: "stopped"
    }

    {
      hostname: "web-8"
      ip: "135.245.35.43"
      os: "Amazon Linux 2023"
      cpu_cores: 16
      memory_gb: 64
      status: "maintenance"
    }
  ]
}

See Also