quick-jibri-installer/grafana.sh

254 lines
7.2 KiB
Bash
Raw Normal View History

2020-07-01 20:23:08 +00:00
#!/bin/bash
# Grafana Installer for Jitsi Meet
#
2020-07-01 20:23:08 +00:00
# Based on:
# - https://community.jitsi.org/t/38696
# by Igor Kerstges
# - https://grafana.com/grafana/dashboards/11969
# by "mephisto"
#
2021-05-04 05:37:08 +00:00
# Igor Kerstges © - 2021
2024-03-21 20:09:38 +00:00
# SwITNet Ltd © - 2024, https://switnet.net/
#
2020-07-01 20:23:08 +00:00
# GPLv3 or later.
2020-07-04 13:55:29 +00:00
while getopts m: option
do
case "${option}"
in
m) MODE=${OPTARG};;
\?) echo "Usage: sudo bash ./$0 [-m debug]" && exit;;
esac
2020-07-04 13:55:29 +00:00
done
#DEBUG
if [ "$MODE" = "debug" ]; then
set -x
fi
if ! [ "$(id -u)" = 0 ]; then
echo "You need to be root or have sudo privileges!"
exit 0
fi
clear
echo '
########################################################################
Grafana Dashboard addon
########################################################################
by Software, IT & Networks Ltd
'
2020-07-04 18:26:33 +00:00
run_service() {
systemctl enable "$1"
systemctl restart "$1"
systemctl status "$1"
2020-07-04 18:26:33 +00:00
}
2024-07-03 18:22:49 +00:00
test_match() {
if grep -q "$1" "$2" ; then
echo "$(basename "$2") - OK..."
else
echo "$(basename "$2"), FAIL..."
echo "Please report this to https://forge.switnet.net/switnet/quick-jibri-installer"
exit
fi
}
2020-07-01 20:23:08 +00:00
MAIN_TEL="/etc/telegraf/telegraf.conf"
TEL_JIT="/etc/telegraf/telegraf.d/jitsi.conf"
2020-07-04 12:15:34 +00:00
GRAFANA_INI="/etc/grafana/grafana.ini"
DOMAIN="$(find /etc/prosody/conf.d/ -name \*.lua|awk -F'.cfg' '!/localhost/{print $1}'|xargs basename)"
WS_CONF="/etc/nginx/sites-available/$DOMAIN.conf"
2024-07-03 18:22:49 +00:00
WS_MATCH1="# ensure all static content can always be found first"
GRAFANA_PASS="$(tr -dc "a-zA-Z0-9#_*=" < /dev/urandom | fold -w 14 | head -n1)"
2020-07-01 20:23:08 +00:00
2020-07-01 21:53:42 +00:00
# Min requirements
apt-get update && \
apt-get install -y gnupg2 \
curl \
wget \
jq
2020-07-01 21:53:42 +00:00
2024-07-03 18:22:49 +00:00
# Make sure we can rely on the match strings.
printf "> Testing match strings on config files.\n"
test_match "$WS_MATCH1" "$WS_CONF"
2020-07-04 10:05:59 +00:00
echo "
# Setup InfluxDB Packages
"
2024-07-03 18:22:49 +00:00
curl -s https://repos.influxdata.com/influxdata-archive.key > \
/etc/apt/trusted.gpg.d/influxdata-archive.key
echo "deb [signed-by=/etc/apt/trusted.gpg.d/influxdata-archive.key] https://repos.influxdata.com/debian buster stable" | \
sudo tee /etc/apt/sources.list.d/influxdb.list
apt-get update && apt-get install influxdb -y
2020-07-04 18:26:33 +00:00
run_service influxdb
2020-07-01 20:23:08 +00:00
2020-07-04 10:05:59 +00:00
echo "
# Setup Grafana Packages
"
curl -s https://apt.grafana.com/gpg-full.key | \
gpg --dearmor | tee /etc/apt/trusted.gpg.d/grafana-full-key.gpg >/dev/null
2024-07-03 18:22:49 +00:00
echo "deb https://packages.grafana.com/oss/deb stable main" | \
sudo tee /etc/apt/sources.list.d/grafana_com_oss_deb.list
apt-get update && apt-get install grafana -y
2020-07-04 18:26:33 +00:00
run_service grafana-server
2020-07-01 20:23:08 +00:00
2020-07-04 10:05:59 +00:00
echo "
# Setup Telegraf Packages
"
apt-get update && apt-get install telegraf -y
2020-07-01 20:23:08 +00:00
mv /etc/telegraf/telegraf.conf /etc/telegraf/telegraf.conf.original
2020-07-04 10:05:59 +00:00
echo "
# Setup Telegraf config files
"
2020-07-01 20:23:08 +00:00
cat << TELEGRAF > $MAIN_TEL
[global_tags]
###############################################################################
# GLOBAL #
###############################################################################
[agent]
interval = "10s"
debug = false
hostname = "localhost"
round_interval = true
flush_interval = "10s"
flush_jitter = "0s"
collection_jitter = "0s"
metric_batch_size = 1000
metric_buffer_limit = 10000
quiet = false
logfile = ""
omit_hostname = false
TELEGRAF
cat << JITSI_TELEGRAF > $TEL_JIT
###############################################################################
# INPUTS #
###############################################################################
[[inputs.http]]
name_override = "jitsi_stats"
urls = [
"http://localhost:8080/colibri/stats"
]
data_format = "json"
###############################################################################
# OUTPUTS #
###############################################################################
[[outputs.influxdb]]
urls = ["http://localhost:8086"]
database = "jitsi"
timeout = "0s"
retention_policy = ""
JITSI_TELEGRAF
2020-07-04 18:26:33 +00:00
run_service telegraf
2020-07-01 20:23:08 +00:00
echo -e "\n# Setup videobridge options\n"
echo '
# extra options to pass to the JVB daemon
JVB_OPTS="--apis=rest,xmpp"' >> /etc/jitsi/videobridge/config
2020-07-01 20:23:08 +00:00
sed -i "s|TRANSPORT=muc|TRANSPORT=muc,colibri|" /etc/jitsi/videobridge/sip-communicator.properties
2024-07-03 18:22:49 +00:00
# Enable videobridge REST API
hocon -f /etc/jitsi/videobridge/jvb.conf set videobridge.apis.rest.enabled true
2020-07-01 20:23:08 +00:00
systemctl restart jitsi-videobridge2
echo -e "\n# Setup Grafana nginx domain\n"
2020-07-04 12:15:34 +00:00
sed -i "s|;protocol =.*|protocol = http|" $GRAFANA_INI
2024-07-03 18:22:49 +00:00
sed -i "s|;http_addr =.*|http_addr = 127.0.0.1|" $GRAFANA_INI
2020-07-04 12:15:34 +00:00
sed -i "s|;http_port =.*|http_port = 3000|" $GRAFANA_INI
sed -i "s|;domain =.*|domain = $DOMAIN|" $GRAFANA_INI
2020-07-04 12:56:42 +00:00
sed -i "s|;enforce_domain =.*|enforce_domain = false|" $GRAFANA_INI
2020-07-04 12:15:34 +00:00
sed -i "s|;root_url =.*|root_url = http://$DOMAIN:3000/grafana/|" $GRAFANA_INI
sed -i "s|;serve_from_sub_path =.*|serve_from_sub_path = true|" $GRAFANA_INI
sed -i "s|;allow_sign_up =.*|allow_sign_up = false|" $GRAFANA_INI
2020-07-04 20:32:11 +00:00
2020-07-04 12:15:34 +00:00
systemctl restart grafana-server
2020-07-04 20:32:11 +00:00
echo "Waiting for Grafana to load..."
secs=$((10))
while [ $secs -gt 0 ]; do
echo -ne "$secs\033[0K\r"
sleep 1
: $((secs--))
done
2020-07-04 12:15:34 +00:00
if [ -f "$WS_CONF" ]; then
2024-07-03 18:22:49 +00:00
sed -i "/$WS_MATCH1/i \ \ \ \ location \~ \^\/(grafana\/|grafana\/login) {" "$WS_CONF"
sed -i "/$WS_MATCH1/i \ \ \ \ \ \ \ \ proxy_pass http:\/\/localhost:3000;" "$WS_CONF"
sed -i "/$WS_MATCH1/i \ \ \ \ }" "$WS_CONF"
sed -i "/$WS_MATCH1/i \\\n" "$WS_CONF"
systemctl restart nginx
2020-07-04 12:15:34 +00:00
else
echo "No app configuration done to server file, please report to:
-> https://forge.switnet.net/switnet/quick-jibri-installer/issues"
2020-07-04 12:15:34 +00:00
fi
2020-07-04 10:05:59 +00:00
echo "
# Setup Grafana credentials.
"
curl -s -k -u "admin:admin" -X \
PUT -H "Content-Type: application/json;charset=UTF-8" -d \
2020-07-04 19:26:10 +00:00
"{
2020-07-04 10:05:59 +00:00
\"oldPassword\": \"admin\",
\"newPassword\": \"$GRAFANA_PASS\",
\"confirmNew\": \"$GRAFANA_PASS\"
2024-07-04 03:58:19 +00:00
}" http://localhost:3000/api/user/password; echo ""
2020-07-02 17:48:09 +00:00
2020-07-04 10:05:59 +00:00
echo "
# Create InfluxDB datasource
"
curl -s -k -u "admin:$GRAFANA_PASS" -X \
2020-07-04 13:53:15 +00:00
POST -H 'Content-Type: application/json;charset=UTF-8' -d \
'{
"name": "InfluxDB",
"type": "influxdb",
2024-07-04 03:58:19 +00:00
"url": "http://localhost:8086",
"access": "proxy",
"isDefault": true,
"database": "jitsi"
2024-07-04 03:58:19 +00:00
}' http://localhost:3000/api/datasources; echo ""
2020-07-01 20:23:08 +00:00
2020-07-04 10:05:59 +00:00
echo "
# Add Grafana Dashboard
"
2024-07-04 03:58:19 +00:00
grafana_host="http://localhost:3000"
2020-07-02 17:48:09 +00:00
grafana_cred="admin:$GRAFANA_PASS"
2020-07-01 22:58:37 +00:00
grafana_datasource="InfluxDB"
2020-07-01 20:23:08 +00:00
ds=(11969);
for d in "${ds[@]}"; do
echo "Processing $d: "
j="$(curl -s -k -u "$grafana_cred" "$grafana_host"/api/gnet/dashboards/"$d" | jq .json)"
curl -s -k -u "$grafana_cred" -XPOST -H "Accept: application/json" \
2020-07-01 20:23:08 +00:00
-H "Content-Type: application/json" \
2020-07-04 19:26:10 +00:00
-d "{
\"dashboard\": $j,
\"overwrite\": true,
\"inputs\": [{
\"name\": \"DS_INFLUXDB\",
\"type\": \"datasource\",
\"pluginId\": \"influxdb\",
\"value\": \"$grafana_datasource\"
}]
}" $grafana_host/api/dashboards/import; echo ""
2020-07-01 20:23:08 +00:00
done
2020-07-01 21:59:00 +00:00
2020-07-02 17:48:09 +00:00
echo "
2020-07-04 12:15:34 +00:00
Go check:
2020-07-04 12:56:42 +00:00
>> http://$DOMAIN/grafana/
2020-07-04 12:15:34 +00:00
(emphasis on the trailing \"/\") to review configuration and dashboards.
User: admin
Password: $GRAFANA_PASS
Please save it somewhere safe.
2020-07-02 17:48:09 +00:00
"
2020-07-04 12:15:34 +00:00
read -n 1 -s -r -p "Press any key to continue..."$'\n'