1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/grafana_ynh.git synced 2024-09-03 20:36:29 +02:00
grafana_ynh/scripts/upgrade

132 lines
5.2 KiB
Text
Raw Normal View History

2017-02-18 16:45:43 +01:00
#!/bin/bash
2020-05-17 09:28:22 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-02-18 16:45:43 +01:00
2020-05-17 09:28:22 +02:00
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# CHECK VERSION
#=================================================
2017-02-18 16:45:43 +01:00
2020-05-17 09:28:22 +02:00
upgrade_type=$(ynh_check_app_version_changed)
2021-08-22 16:17:29 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2023-10-24 20:25:42 +02:00
#REMOVEME? ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=4
2021-08-22 16:17:29 +02:00
# Workaround for missing "/var/lib/grafana/plugins"
mkdir -p "/var/lib/grafana/plugins"
chown -R $app:$app "/var/lib/grafana/plugins"
2020-05-17 09:28:22 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-08-03 08:02:26 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
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
2017-08-03 07:38:57 +02:00
2020-05-17 09:28:22 +02:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
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=3
2021-08-22 16:17:29 +02:00
2020-05-17 09:28:22 +02:00
# If NetData is installed, configure it to feed InfluxDB
if [ -d "/opt/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 $netdata_conf
fi
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
2020-05-17 09:28:22 +02:00
fi
# Remove obsolete NetData backend if in use
netdata_conf="/opt/netdata/etc/netdata/netdata.conf"
if [ -f "$netdata_conf" ] ; then
# If there is already a [backend] section
if [ -n "$(cat $netdata_conf | grep '\[backend\]')" ] ; then
# These regexps replaces patterns inside ini [sections] ([backend] section, here)
sed -i '/^\[backend\]$/,/^\[/ {
s/enabled = yes/enabled = no/
}' $netdata_conf
else
# Otherwise create the section
echo "[backend]
enabled = yes
type = opentsdb
destination = localhost:4242" | tee -a $netdata_conf
fi
fi
# Restart NetData
ynh_systemd_action --service_name=netdata --action="restart"
2020-05-17 09:28:22 +02:00
fi
2023-07-27 12:56:00 +02:00
# Fix configuration for Grafana instances existing prior to version 10
2023-09-02 11:29:11 +02:00
sed -i "/^\[server\]$/,/^\[/ s@serve_from_sub_path = .*@serve_from_sub_path = false@" "/etc/grafana/grafana.ini"
2023-07-27 12:56:00 +02:00
2023-04-29 20:32:28 +02:00
# Update Grafana LDAP authentication configuration
cp ../conf/ldap.toml /etc/grafana
2020-05-17 09:28:22 +02:00
# Update 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
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 <<< "UPDATE dashboard set data=\"$escaped_dashboard\" WHERE id=99999;"
# Insert dashboard version if non existent (for downward compatibility)
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\");" > /dev/null 2>&1 || true
#=================================================
# GENERIC FINALIZATION
#=================================================
2020-12-11 22:33:52 +01:00
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2021-08-22 16:17:29 +02:00
ynh_script_progression --message="Integrating service in YunoHost..."
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"
2020-05-17 09:28:22 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Restarting a systemd service..." --weight=2
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
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last