quick-jibri-installer/grafana.sh

201 lines
6.1 KiB
Bash
Raw Normal View History

2020-07-01 20:23:08 +00:00
#!/bin/bash
# Grafana Installer
# Based on:
# https://community.jitsi.org/t/how-to-to-setup-grafana-dashboards-to-monitor-jitsi-my-comprehensive-tutorial-for-the-beginner/
# by Woodworker_Life
# Woodworker_Life © - 2020
2020-07-02 17:48:09 +00:00
# Jitsi Metrics - Grafana dashboard by mephisto
# https://grafana.com/grafana/dashboards/11969
2020-07-01 20:23:08 +00:00
# SwITNet Ltd © - 2020, https://switnet.net/
# 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 ./grafana.sh [-m debug]" && exit;;
esac
done
#DEBUG
if [ "$MODE" = "debug" ]; then
set -x
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=$(ls /etc/prosody/conf.d/ | grep -v localhost | awk -F'.cfg' '{print $1}' | awk '!NF || !seen[$0]++')
WS_CONF="/etc/nginx/sites-enabled/$DOMAIN.conf"
2020-07-04 13:53:15 +00:00
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 update && apt install -y gnupg2 curl wget jq
2020-07-04 10:05:59 +00:00
echo "
# Setup InfluxDB Packages
"
2020-07-01 20:23:08 +00:00
wget -qO- https://repos.influxdata.com/influxdb.key | sudo apt-key add -
echo "deb https://repos.influxdata.com/debian buster stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
apt update && apt install influxdb -y
2020-07-04 13:53:15 +00:00
systemctl enable influxdb
2020-07-01 20:23:08 +00:00
systemctl status influxdb
2020-07-04 10:05:59 +00:00
echo "
# Setup Grafana Packages
"
2020-07-01 20:23:08 +00:00
curl -s https://packages.grafana.com/gpg.key | sudo apt-key add -
add-apt-repository "deb https://packages.grafana.com/oss/deb stable main"
apt update && apt install grafana -y
2020-07-04 13:53:15 +00:00
systemctl enable grafana-server
2020-07-01 20:23:08 +00:00
systemctl status grafana-server
2020-07-04 10:05:59 +00:00
echo "
# Setup Telegraf Packages
"
2020-07-01 20:23:08 +00:00
wget -qO- https://repos.influxdata.com/influxdb.key | sudo apt-key add -
echo "deb https://repos.influxdata.com/debian buster stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
apt update && apt install telegraf -y
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 10:05:59 +00:00
systemctl enable telegraf
systemctl restart telegraf
2020-07-01 20:23:08 +00:00
systemctl status telegraf
2020-07-04 10:05:59 +00:00
echo "
# Setup videobridge options
"
2020-07-01 21:53:42 +00:00
sed -i "s|JVB_OPTS=\"--apis.*|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
systemctl restart jitsi-videobridge2
2020-07-04 12:15:34 +00:00
echo "
# Setup Grafana nginx domain
"
sed -i "s|;protocol =.*|protocol = http|" $GRAFANA_INI
sed -i "s|;http_addr =.*|http_addr = localhost|" $GRAFANA_INI
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
systemctl restart grafana-server
if [ -f $WS_CONF ]; then
sed -i "/Anything that didn't match above/i \ \ \ \ location \~ \^\/(grafana\/|grafana\/login) {" $WS_CONF
sed -i "/Anything that didn't match above/i \ \ \ \ \ \ \ \ proxy_pass http:\/\/localhost:3000;" $WS_CONF
sed -i "/Anything that didn't match above/i \ \ \ \ }" $WS_CONF
2020-07-04 12:56:42 +00:00
sed -i "/Anything that didn't match above/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://github.com/switnet-ltd/quick-jibri-installer/issues"
fi
2020-07-04 10:05:59 +00:00
echo "
# Setup Grafana credentials.
"
curl -X PUT -H "Content-Type: application/json" -d "{
\"oldPassword\": \"admin\",
\"newPassword\": \"$GRAFANA_PASS\",
\"confirmNew\": \"$GRAFANA_PASS\"
}" http://admin:admin@localhost:3000/grafana/api/user/password
2020-07-02 17:48:09 +00:00
2020-07-04 10:05:59 +00:00
echo "
# Create InfluxDB datasource
"
2020-07-04 13:53:15 +00:00
curl -X \
POST -H 'Content-Type: application/json;charset=UTF-8' -d \
'{
"name":"InfluxDB",
"type":"influxdb",
"url":"http://localhost:8086",
"access":"proxy",
"isDefault":true,
"database":"jitsi"
}' http://admin:$GRAFANA_PASS@localhost:3000/grafana/api/datasources
2020-07-01 20:23:08 +00:00
2020-07-04 10:05:59 +00:00
echo "
# Add Grafana Dashboard
"
grafana_host="http://localhost:3000/grafana"
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 -n "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" \
-H "Content-Type: application/json" \
-d "{\"dashboard\":$j,\"overwrite\":true, \
\"inputs\":[{\"name\":\"DS_INFLUXDB\",\"type\":\"datasource\", \
\"pluginId\":\"influxdb\",\"value\":\"$grafana_datasource\"}]}" \
$grafana_host/api/dashboards/import; echo ""
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'