<!DOCTYPE html>
<html>
<head>
    <title>Monitoring Dashboard</title>
    <meta charset="UTF-8">
    <style>
        body { font-family: Arial, sans-serif; margin: 40px; background: #f5f5f5; }
        .container { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
        h1 { color: #333; text-align: center; }
        .services { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 30px; }
        .service { background: #007bff; color: white; padding: 20px; border-radius: 8px; text-decoration: none; text-align: center; transition: transform 0.2s; }
        .service:hover { transform: translateY(-2px); background: #0056b3; text-decoration: none; color: white; }
        .service h3 { margin: 0 0 10px 0; }
        .service p { margin: 0; opacity: 0.9; }
    </style>
</head>
<body>
    <div class="container">
        <h1>Monitoring Services</h1>
        <div class="services">
            <a href="https://monit.useyourai.com:8443/" class="service" target="_blank">
                <h3>[Charts] Grafana</h3>
                <p>Dashboards and Visualizations</p>
            </a>
            <a href="https://monit.useyourai.com:8444/" class="service" target="_blank">
                <h3>[Metrics] Prometheus</h3>
                <p>Metrics and Queries</p>
            </a>
            <a href="https://monit.useyourai.com:8445/" class="service" target="_blank">
                <h3>[Alerts] AlertManager</h3>
                <p>Alert Management</p>
            </a>
        </div>
    </div>
</body>
</html>