2017-02-18 16:45:43 +01:00
#!/bin/bash
2017-12-03 19:24:03 +01:00
#=================================================
2020-05-17 09:28:22 +02:00
# GENERIC START
2017-12-03 19:24:03 +01:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
2017-02-18 16:45:43 +01:00
2020-05-17 09:28:22 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-08-03 08:02:26 +02:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
2017-08-03 07:38:57 +02:00
2021-08-22 16:17:29 +02:00
# Create a dedicated NGINX config
2020-05-17 09:28:22 +02:00
ynh_add_nginx_config
#=================================================
# SPECIFIC SETUP
#=================================================
2021-08-22 16:17:29 +02:00
# CONFIGURING GRAFANA AND INFLUXDB
#=================================================
2020-05-17 09:28:22 +02:00
ynh_script_progression --message="Configuring Grafana and InfluxDB..." --weight=30
2021-08-03 08:23:26 +02:00
2017-02-18 16:45:43 +01:00
# If NetData is installed, configure it to feed InfluxDB
2022-09-03 19:03:51 +02:00
if [ -d "/opt/netdata/etc/netdata" ] ; then
netdata_conf="/opt/netdata/etc/netdata/exporting.conf"
if [ ! -f "$netdata_conf" ] ; then
cp "/opt/netdata/usr/lib/netdata/conf.d/exporting.conf" /opt/netdata/etc/netdata
fi
2020-11-15 15:15:41 +01:00
sed -i '/^\[exporting:global\]$/,/^\[/ {
s/enabled = no/enabled = yes/
s/# update every = 10/update every = 60/
}' $netdata_conf
if [ -z "$(grep "yunohost" $netdata_conf)" ] ; then
cat >> $netdata_conf <<EOF
[opentsdb:yunohost]
enabled = yes
destination = localhost:4242
# data source = average
# prefix = netdata
# hostname = my_hostname
update every = 60
# buffer on failures = 10
# timeout ms = 20000
# send names instead of ids = yes
# send charts matching = *
# send hosts matching = localhost *
EOF
2017-02-18 16:45:43 +01:00
fi
# Restart NetData
2020-05-17 09:28:22 +02:00
ynh_systemd_action --service_name=netdata --action="restart"
2017-02-18 16:45:43 +01:00
fi
# Configure InfluxDB
2022-09-03 19:03:51 +02:00
sed -i '/^\[\[opentsdb\]\]$/,/^\[/ s/^.* enabled = false/enabled = true/' /etc/influxdb/influxdb.conf
2017-02-18 16:45:43 +01:00
# Start InfluxDB server
2020-05-17 09:28:22 +02:00
ynh_systemd_action --service_name=influxdb --action="restart"
2017-02-18 16:45:43 +01:00
# Configure Grafana
2020-05-17 09:28:22 +02:00
cp ../conf/ldap.toml /etc/grafana
2017-02-18 16:45:43 +01:00
grafana_conf="/etc/grafana/grafana.ini"
2017-05-14 18:26:27 +02:00
# Set final port
2020-05-17 09:28:22 +02:00
sed -i "/^\[server\]$/,/^\[/ s@;http_port = .*@http_port = $port@" $grafana_conf
2019-01-13 18:51:59 +01:00
# Set domain
2020-05-17 09:28:22 +02:00
sed -i "/^\[server\]$/,/^\[/ s@;domain = .*@domain = $domain@" $grafana_conf
2017-02-18 16:45:43 +01:00
# Set final URL
2023-10-24 20:25:42 +02:00
sed -i "/^\[server\]$/,/^\[/ s@;root_url = .*@root_url = https://$domain$path@" $grafana_conf
2017-02-18 16:45:43 +01:00
# Disable check for updates
2020-05-17 09:28:22 +02:00
sed -i '/^\[analytics\]$/,/^\[/ s/;check_for_updates = .*/check_for_updates = false/' $grafana_conf
# Disable analytics reporting
sed -i '/^\[analytics\]$/,/^\[/ s/;reporting_enabled = .*/reporting_enabled = false/' $grafana_conf
2017-03-05 15:25:18 +01:00
# Disable organization creation
2020-05-17 09:28:22 +02:00
sed -i '/^\[users\]$/,/^\[/ s/;allow_org_create = .*/allow_org_create = false/' $grafana_conf
2017-02-18 16:45:43 +01:00
# Enable HTTP and LDAP authentication
2020-05-17 09:28:22 +02:00
sed -i '/^\[auth.basic\]$/,/^\[/ s/;enabled = .*/enabled = false/' $grafana_conf
sed -i '/^\[auth.proxy\]$/,/^\[/ s/;enabled = .*/enabled = true/' $grafana_conf
sed -i '/^\[auth.ldap\]$/,/^\[/ {
2017-02-18 16:45:43 +01:00
s/;enabled = .*/enabled = true/
s/;allow_sign_up = .*/allow_sign_up = true/
}' $grafana_conf
# Set log level to debug
2020-05-17 09:28:22 +02:00
sed -i '/^\[log\]$/,/^\[/ s/;level = .*/level = debug/' $grafana_conf
2017-02-18 16:45:43 +01:00
# Change URL and database credentials
2020-05-17 09:28:22 +02:00
sed -i "/^\[database\]$/,/^\[/ {
2017-02-18 16:45:43 +01:00
s/;type = .*/type = mysql/
2020-05-17 09:28:22 +02:00
s/;name = .*/name = $db_name/
s/;user = .*/user = $db_user/
s/;\?password =.*/password = $db_pwd/
2017-02-18 16:45:43 +01:00
}" $grafana_conf
2020-05-17 09:28:22 +02:00
# Calculate and store the config file checksum into the app settings
ynh_store_file_checksum --file="$grafana_conf"
2019-01-13 18:51:59 +01:00
# Start Grafana and wait for it to be fully started
2022-02-06 19:08:44 +01:00
systemctl daemon-reload
2020-05-17 09:28:22 +02:00
ynh_systemd_action --service_name=grafana-server --action="restart" --log_path="/var/log/grafana/grafana.log" --line_match="HTTP Server Listen" --timeout=600
2017-02-18 16:45:43 +01:00
2017-03-05 14:41:56 +01:00
# Change admin name to the specified one
mail=$(ynh_user_get_info "$admin" 'mail')
2020-05-17 09:28:22 +02:00
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name <<< "UPDATE user SET login=\"$admin\", email=\"$mail\" WHERE login=\"admin\";"
# Create InfluxDB data source
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name <<< "INSERT INTO data_source (id, org_id, version, type, name, access, url, password, user, \`database\`, basic_auth, basic_auth_user, basic_auth_password, is_default, json_data, created, updated, with_credentials, secure_json_data) VALUES (99999, 1, 0, 'influxdb', 'InfluxDB', 'proxy', 'http://localhost:8086', '', '', 'opentsdb', 0, '', '', 0, '{\"tsdbResolution\":1,\"tsdbVersion\":1}', '2017-02-12 14:35:33', '2017-02-12 14:36:27', 0, '{}');"
# Import default dashboard for NetData (source: https://grafana.com/grafana/dashboards/2701)
# Remove new lines
tr -d '\n' < ../conf/netdata_dashboard.json > dashboard.json
2022-01-29 03:49:58 +01:00
# Fill the template with the defined data source
2020-05-17 09:28:22 +02:00
sed -i 's/${DS_CENTCOM-INFLUXDB}/InfluxDB/g' dashboard.json
# Escape the dashboard definition for MySQL query (source: https://stackoverflow.com/a/4383994)
dashboard=$(cat dashboard.json)
printf -v escaped_dashboard "%q" "$dashboard"
2022-01-29 03:49:58 +01:00
# Import dashboard into MySQL
2020-05-17 09:28:22 +02:00
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name <<< "INSERT INTO dashboard (id, version, slug, title, data, org_id, created, updated, uid) VALUES
(99999, 0, 'NetData', 'NetData', \"$escaped_dashboard\", 1, '2020-05-16 14:36:50', '2020-05-16 14:36:50', 'yunohost');"
2022-01-29 03:49:58 +01:00
# Add dashboard version
2020-05-17 09:28:22 +02:00
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name <<< "INSERT INTO dashboard_version (id, dashboard_id, parent_version, restored_from, version, created, created_by, message, data) VALUES (99999, 99999, 0, 0, 1, '2020-05-16 14:36:50', 1, 'YunoHost installer', \"$escaped_dashboard\");"
2017-03-05 14:41:56 +01:00
2020-05-17 09:28:22 +02:00
# Enable the systemd service so that InfluxDB and Grafana start at boot
2020-12-11 22:33:52 +01:00
systemctl enable influxdb.service --quiet
systemctl enable grafana-server.service --quiet
2017-03-05 14:41:56 +01:00
2020-05-17 09:28:22 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2021-08-22 16:17:29 +02:00
ynh_script_progression --message="Integrating service in YunoHost..."
2017-02-18 16:45:43 +01:00
2020-12-11 22:33:52 +01:00
yunohost service add influxdb --description="open source time series database" --log="/var/log/grafana/grafana.log"
yunohost service add grafana-server --description="open source analytics and monitoring solution" --log="/var/log/grafana/grafana.log"
2017-02-18 16:45:43 +01:00
2020-05-17 09:28:22 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=2
2017-02-18 16:45:43 +01:00
2022-02-06 19:08:44 +01:00
systemctl daemon-reload
2020-05-17 09:28:22 +02:00
ynh_systemd_action --service_name=grafana-server --action="restart" --log_path="/var/log/grafana/grafana.log" --line_match="HTTP Server Listen" --timeout=600
#=================================================
# END OF SCRIPT
#=================================================
2019-01-13 18:51:59 +01:00
2020-05-17 09:28:22 +02:00
ynh_script_progression --message="Installation of $app completed" --last