Show pageBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Sensu ====== * Homepage: [[https://sensu.io/|sensu.io]] * Sensu-Grid: [[https://github.com/alex-leonhardt/sensu-grid|github: alex-leonhardt/sensu-grid]] ===== Defaults ===== ^ Admin username | ''admin'' | ^ Admin password | ''P@ssw0rd!'' | ==== Ports ==== ^ Dashboard | 3000 | ^ API | 8080 | ^ Client API /\\ Agent Listener | 8081 | ===== Docker-Compose ===== ===== Systemd Unit ===== <file ini /etc/systemd/system/sensu-agent.service> [Unit] Description=The Sensu Agent process. After=network-online.target Wants=network-online.target [Service] Type=simple User=sensu Group=sensu # Load env vars from /etc/default/ and /etc/sysconfig/ if they exist. # Prefixing the path with '-' makes it try to load, but if the file doesn't # exist, it continues onward. EnvironmentFile=-/etc/default/sensu-agent EnvironmentFile=-/etc/sysconfig/sensu-agent LimitNOFILE=65535 ExecStart=/usr/sbin/sensu-agent start Restart=always WorkingDirectory=/ [Install] WantedBy=multi-user.target </file> Last modified: 2024-07-05 14:31