Skip to content
Closed
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ct/headers/icinga
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
██╗ ██████╗ ██╗ ███╗ ██╗ ██████╗ █████╗
██║██╔════╝ ██║ ████╗ ██║ ██╔════╝ ██╔══██╗
██║██║ ██║ ██╔██╗ ██║ ██║ ███╗███████║
██║██║ ██║ ██║╚██╗██║ ██║ ██║██╔══██║
██║╚██████╗ ██║ ██║ ╚████║ ╚██████╔╝██║ ██║
╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚═╝
Comment thread
chrnie marked this conversation as resolved.
Outdated
46 changes: 46 additions & 0 deletions ct/icinga.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#!/usr/bin/env bash
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: chrnie
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
# Source: https://icinga.com/

APP="Icinga"
var_tags="${var_tags:-monitoring}"
var_cpu="${var_cpu:-2}"
var_ram="${var_ram:-2048}"
var_disk="${var_disk:-8}"
var_os="${var_os:-debian}"
var_version="${var_version:-13}"
var_unprivileged="0"
Comment thread
chrnie marked this conversation as resolved.
Outdated

header_info "$APP"
variables
color
catch_errors

function update_script() {
header_info
check_container_storage
check_container_resources
if [[ ! -f /usr/sbin/icinga2 ]]; then
msg_error "No ${APP} Installation Found!"
exit
fi

msg_info "Updating Icinga"
$STD apt update
$STD apt upgrade -y
msg_ok "Updated Icinga"
msg_ok "Updated successfully!"
exit
}

start
build_container
description

msg_ok "Completed successfully!\n"
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}/icingaweb2 for icingaweb and Port 5665 for icinga2 api.${CL}"
Comment thread
chrnie marked this conversation as resolved.
Outdated
48 changes: 48 additions & 0 deletions frontend/public/json/icinga.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"name": "Icinga2 Monitoring",
"slug": "icinga2",
"categories": [
9
],
"date_created": "2026-01-16",
"type": "ct",
"updateable": true,
"privileged": true,
"interface_port": 80,
"documentation": "https://icinga.com/docs/",
"website": "https://icinga.com/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/icinga.webp",
"config_path": "",
"description": "Icinga2 is a powerful open-source monitoring system for infrastructure and services. It provides comprehensive monitoring, alerting, and visualization for hosts, services, and applications. Icinga2 features a modern web interface (Icinga Web 2), supports distributed setups, and integrates with many notification and reporting modules. This container includes Icinga2 Core, Icinga Web 2, MariaDB, Director, Reporting, x509, Notification, and Linuxfabrik plugins for advanced monitoring scenarios.",
"install_methods": [
{
"type": "default",
"script": "ct/icinga.sh",
"resources": {
"cpu": 2,
"ram": 2048,
"hdd": 8,
"os": "debian",
"version": "13"
}
}
],
"default_credentials": {
"username": "icingaadmin",
"password": "(see install output)"
},
"notes": [
{
"text": "Web interface: http://<container-ip>/icingaweb2",
"type": "info"
},
{
"text": "Default user: icingaadmin (password is shown after install)",
"type": "info"
},
{
"text": "Director, Reporting, x509, Notifications and Linuxfabrik plugins are pre-installed.",
"type": "info"
}
]
}
Loading