2015-11-04 04:48:08 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#####################################################################################
|
2016-02-18 15:41:39 +00:00
|
|
|
# ADS-B RECEIVER #
|
2015-11-04 04:48:08 +00:00
|
|
|
#####################################################################################
|
|
|
|
# #
|
|
|
|
# This script is not meant to be executed directly. #
|
|
|
|
# Instead execute install.sh to begin the installation process. #
|
|
|
|
# #
|
|
|
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
|
|
|
# #
|
|
|
|
# Copyright (c) 2015 Joseph A. Prochazka #
|
|
|
|
# #
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy #
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal #
|
|
|
|
# in the Software without restriction, including without limitation the rights #
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell #
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is #
|
|
|
|
# furnished to do so, subject to the following conditions: #
|
|
|
|
# #
|
|
|
|
# The above copyright notice and this permission notice shall be included in all #
|
|
|
|
# copies or substantial portions of the Software. #
|
|
|
|
# #
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE #
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, #
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE #
|
|
|
|
# SOFTWARE. #
|
|
|
|
# #
|
|
|
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
|
|
|
|
2016-01-08 17:02:34 +00:00
|
|
|
BUILDDIR=$PWD
|
2015-11-04 04:48:08 +00:00
|
|
|
|
2016-01-13 21:51:45 +00:00
|
|
|
## MODIFY THE DUMP1090-MUTABILITY INIT SCRIPT TO MEASURE AND RETAIN NOISE DATA
|
|
|
|
|
|
|
|
echo -e "\033[33m"
|
|
|
|
echo "Configuring dump1090-mutability to measure and save noise data."
|
|
|
|
echo "Modifying the dump1090-mutability init script..."
|
|
|
|
sudo sed -i 's/ARGS=""/ARGS="--measure-noise "/g' /etc/init.d/dump1090-mutability
|
|
|
|
echo "Restarting dump1090-mutability..."
|
|
|
|
echo -e "\033[37m"
|
|
|
|
sudo /etc/init.d/dump1090-mutability restart
|
|
|
|
|
2015-11-04 04:48:08 +00:00
|
|
|
## BACKUP AND REPLACE COLLECTD.CONF
|
|
|
|
|
|
|
|
echo -e "\033[33m"
|
|
|
|
echo "Backing up and replacing the current collectd.conf file..."
|
|
|
|
echo -e "\033[37m"
|
|
|
|
sudo mv /etc/collectd/collectd.conf /etc/collectd/collectd.conf.back
|
|
|
|
sudo tee -a /etc/collectd/collectd.conf > /dev/null <<EOF
|
|
|
|
# Config file for collectd(1).
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
# Global #
|
|
|
|
##############################################################################
|
|
|
|
Hostname "localhost"
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------------#
|
|
|
|
# Added types for dump1090. #
|
|
|
|
# Make sure the path to dump1090.db is correct. #
|
|
|
|
#----------------------------------------------------------------------------#
|
2015-12-01 12:18:42 +00:00
|
|
|
TypesDB "${BUILDDIR}/portal/graphs/dump1090.db" "/usr/share/collectd/types.db"
|
2015-11-04 04:48:08 +00:00
|
|
|
|
|
|
|
#----------------------------------------------------------------------------#
|
|
|
|
# Interval at which to query values. This may be overwritten on a per-plugin #
|
|
|
|
# base by using the 'Interval' option of the LoadPlugin block: #
|
|
|
|
# <LoadPlugin foo> #
|
|
|
|
# Interval 60 #
|
|
|
|
# </LoadPlugin> #
|
|
|
|
#----------------------------------------------------------------------------#
|
|
|
|
Interval 60
|
|
|
|
Timeout 2
|
|
|
|
ReadThreads 5
|
|
|
|
WriteThreads 1
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
# Logging #
|
|
|
|
##############################################################################
|
|
|
|
LoadPlugin syslog
|
|
|
|
|
|
|
|
<Plugin syslog>
|
|
|
|
LogLevel info
|
|
|
|
</Plugin>
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
# LoadPlugin section #
|
|
|
|
#----------------------------------------------------------------------------#
|
|
|
|
# Specify what features to activate. #
|
|
|
|
##############################################################################
|
|
|
|
LoadPlugin rrdtool
|
|
|
|
LoadPlugin table
|
|
|
|
LoadPlugin interface
|
|
|
|
LoadPlugin memory
|
|
|
|
LoadPlugin cpu
|
|
|
|
LoadPlugin aggregation
|
|
|
|
LoadPlugin match_regex
|
|
|
|
LoadPlugin df
|
|
|
|
LoadPlugin disk
|
|
|
|
<LoadPlugin python>
|
|
|
|
Globals true
|
|
|
|
</LoadPlugin>
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
# Plugin configuration #
|
|
|
|
##############################################################################
|
|
|
|
<Plugin rrdtool>
|
|
|
|
DataDir "/var/lib/collectd/rrd"
|
|
|
|
</Plugin>
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------------#
|
|
|
|
# Configure the dump1090 python module. #
|
|
|
|
# #
|
|
|
|
# Each Instance block collects statistics from a separate named dump1090. #
|
|
|
|
# The URL should be the base URL of the webmap, i.e. in the examples below, #
|
|
|
|
# statistics will be loaded from http://localhost/dump1090/data/stats.json #
|
|
|
|
#----------------------------------------------------------------------------#
|
|
|
|
<Plugin python>
|
2015-12-01 07:57:20 +00:00
|
|
|
ModulePath "${BUILDDIR}/portal/graphs"
|
2015-11-04 04:48:08 +00:00
|
|
|
LogTraces true
|
|
|
|
Import "dump1090"
|
|
|
|
<Module dump1090>
|
|
|
|
<Instance localhost>
|
|
|
|
URL "http://localhost/dump1090"
|
|
|
|
</Instance>
|
|
|
|
</Module>
|
|
|
|
</Plugin>
|
|
|
|
|
|
|
|
<Plugin table>
|
|
|
|
<Table "/sys/class/thermal/thermal_zone0/temp">
|
2015-11-17 05:13:18 +00:00
|
|
|
Instance localhost
|
2015-11-04 04:48:08 +00:00
|
|
|
Separator " "
|
|
|
|
<Result>
|
|
|
|
Type gauge
|
|
|
|
InstancePrefix "cpu_temp"
|
|
|
|
ValuesFrom 0
|
|
|
|
</Result>
|
|
|
|
</Table>
|
|
|
|
</Plugin>
|
|
|
|
|
|
|
|
<Plugin "interface">
|
2015-12-16 20:42:04 +00:00
|
|
|
Interface "eth0"
|
2016-01-26 19:04:37 +00:00
|
|
|
Interface "wlan0"
|
2015-11-04 04:48:08 +00:00
|
|
|
</Plugin>
|
|
|
|
|
|
|
|
<Plugin "aggregation">
|
|
|
|
<Aggregation>
|
|
|
|
Plugin "cpu"
|
|
|
|
Type "cpu"
|
|
|
|
GroupBy "Host"
|
|
|
|
GroupBy "TypeInstance"
|
|
|
|
CalculateAverage true
|
|
|
|
</Aggregation>
|
|
|
|
</Plugin>
|
|
|
|
|
|
|
|
<Plugin "df">
|
|
|
|
MountPoint "/"
|
|
|
|
IgnoreSelected false
|
|
|
|
ReportReserved true
|
|
|
|
ReportInodes true
|
|
|
|
</Plugin>
|
|
|
|
|
|
|
|
<Plugin "disk">
|
|
|
|
Disk "mmcblk0"
|
|
|
|
IgnoreSelected false
|
|
|
|
</Plugin>
|
|
|
|
|
|
|
|
<Chain "PostCache">
|
|
|
|
<Rule>
|
|
|
|
<Match regex>
|
|
|
|
Plugin "^cpu\$"
|
|
|
|
PluginInstance "^[0-9]+\$"
|
|
|
|
</Match>
|
|
|
|
<Target write>
|
|
|
|
Plugin "aggregation"
|
|
|
|
</Target>
|
|
|
|
Target stop
|
|
|
|
</Rule>
|
|
|
|
Target "write"
|
|
|
|
</Chain>
|
|
|
|
EOF
|
|
|
|
|
|
|
|
## RELOAD COLLECTD
|
|
|
|
|
|
|
|
echo -e "\033[33mReloading collectd so the new configuration is used..."
|
|
|
|
echo -e "\033[37m"
|
|
|
|
sudo /etc/init.d/collectd force-reload
|
|
|
|
|
|
|
|
## EDIT CRONTAB
|
|
|
|
|
|
|
|
echo -e "\033[33mAdding jobs to crontab..."
|
2016-02-17 16:51:04 +00:00
|
|
|
|
|
|
|
# The next block is temporary in order to insure this file is
|
|
|
|
# deleted on older installation before the project renaming.
|
2015-12-26 14:57:23 +00:00
|
|
|
if [ -f /etc/cron.d/adsb-feeder-performance-graphs ]; then
|
2015-12-26 13:17:32 +00:00
|
|
|
echo -e "Removing previously installed cron file..."
|
2015-12-26 04:06:38 +00:00
|
|
|
sudo rm -f /etc/cron.d/adsb-feeder-performance-graphs
|
|
|
|
fi
|
2016-02-17 16:51:04 +00:00
|
|
|
|
|
|
|
if [ -f /etc/cron.d/adsb-receiver-performance-graphs ]; then
|
|
|
|
echo -e "Removing previously installed cron file..."
|
|
|
|
sudo rm -f /etc/cron.d/adsb-receiver-performance-graphs
|
|
|
|
fi
|
2015-11-04 04:48:08 +00:00
|
|
|
echo -e "\033[37m"
|
2016-01-24 05:09:19 +00:00
|
|
|
chmod +x $BUILDDIR/portal/graphs/make-collectd-graphs.sh
|
2016-02-17 16:51:04 +00:00
|
|
|
sudo tee -a /etc/cron.d/adsb-receiver-performance-graphs > /dev/null <<EOF
|
2015-12-15 18:12:45 +00:00
|
|
|
# Updates the portal's performance graphs.
|
|
|
|
#
|
|
|
|
# Every 5 minutes new hourly graphs are generated.
|
|
|
|
# Every 10 minutes new six hour graphs are generated.
|
|
|
|
# At 2, 12, 22, 32, 42, and 52 minutes past the hour new 24 hour graphs are generated.
|
|
|
|
# At 4, 24, and 44 minuites past the hour new 7 day graphs are generated.
|
|
|
|
# At 6 minutes past the hour new 30 day graphs are generated.
|
|
|
|
# At 8 minutes past every 12th hour new 365 day graphs are generated.
|
|
|
|
|
2015-12-26 17:42:04 +00:00
|
|
|
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
|
|
|
|
|
2015-12-01 08:12:04 +00:00
|
|
|
*/5 * * * * root bash ${BUILDDIR}/portal/graphs/make-collectd-graphs.sh 1h >/dev/null
|
|
|
|
*/10 * * * * root bash ${BUILDDIR}/portal/graphs/make-collectd-graphs.sh 6h >/dev/null
|
2016-01-24 05:09:19 +00:00
|
|
|
2,12,22,32,42,52 * * * * root bash ${BUILDDIR}/portal/graphs/make-collectd-graphs.sh 24h >/dev/null
|
|
|
|
4,24,44 * * * * root bash ${BUILDDIR}/portal/graphs/make-collectd-graphs.sh 7d >/dev/null
|
|
|
|
6 * * * * root bash ${BUILDDIR}/portal/graphs/make-collectd-graphs.sh 30d >/dev/null
|
|
|
|
8 */12 * * * root bash ${BUILDDIR}/portal/graphs/make-collectd-graphs.sh 365d >/dev/null
|
2015-12-01 08:12:04 +00:00
|
|
|
EOF
|