blob: 1963111a53b1c2e53b3d01737aa1c6bb5a08eadf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env bash
# netdata
# real-time performance and health monitoring, done right!
# (C) 2016 Costa Tsaousis <costa@tsaousis.gr>
# GPL v3+
#
# Script to test alarm notifications for netdata
dir="$(dirname "${0}")"
${dir}/alarm-notify.sh test "${1}"
exit $?
|