diff options
-rw-r--r-- | system/telegraf/README | 17 | ||||
-rw-r--r-- | system/telegraf/doinst.sh | 28 | ||||
-rw-r--r-- | system/telegraf/slack-desc | 19 | ||||
-rw-r--r-- | system/telegraf/telegraf | 3 | ||||
-rw-r--r-- | system/telegraf/telegraf.SlackBuild | 107 | ||||
-rw-r--r-- | system/telegraf/telegraf.info | 10 |
6 files changed, 184 insertions, 0 deletions
diff --git a/system/telegraf/README b/system/telegraf/README new file mode 100644 index 000000000000..5603c0571c71 --- /dev/null +++ b/system/telegraf/README @@ -0,0 +1,17 @@ +telegraf (An Open-Source Collecting & Reporting Agent) + +It is part of the TICK stack and is a plugin-driven server agent for +collecting and reporting metrics. Telegraf has plugins or integrations +to source a variety of metrics directly from the system it’s running +on, pull metrics from third-party APIs, or even listen for metrics via +a StatsD and Kafka consumer services. It also has output plugins to +send metrics to a variety of other datastores, services, and message +queues, including InfluxDB, Graphite, OpenTSDB, Datadog, Librato, +Kafka, MQTT, NSQ, and many others. + +Groupname and Username + +You must have the "telegraf" group and user to run this script, for example: + + groupadd -g 349 telegraf + useradd -u 349 -s /bin/false -d /dev/null -g telegraf telegraf diff --git a/system/telegraf/doinst.sh b/system/telegraf/doinst.sh new file mode 100644 index 000000000000..4fc33b5733b9 --- /dev/null +++ b/system/telegraf/doinst.sh @@ -0,0 +1,28 @@ +config() { + NEW="$1" + OLD="`dirname $NEW`/`basename $NEW .new`" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +preserve_perms() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ -e $OLD ]; then + cp -a $OLD ${NEW}.incoming + cat $NEW > ${NEW}.incoming + mv ${NEW}.incoming $NEW + fi + config $NEW +} + +config etc/telegraf/telegraf.conf.new +config etc/logrotate.d/telegraf.new +config etc/default/telegraf.new + +preserve_perms etc/rc.d/rc.telegraf.new diff --git a/system/telegraf/slack-desc b/system/telegraf/slack-desc new file mode 100644 index 000000000000..e302ddec05b2 --- /dev/null +++ b/system/telegraf/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +telegraf: telegraf (An Open-Source Collecting & Reporting Agent) +telegraf: +telegraf: It is part of the TICK stack and is a plugin-driven server agent for +telegraf: collecting and reporting metrics. Telegraf has plugins or integrations +telegraf: to source a variety of metrics directly from the system it’s running +telegraf: on, pull metrics from third-party APIs, or even listen for metrics via +telegraf: a StatsD and Kafka consumer services. It also has output plugins to +telegraf: send metrics to a variety of other datastores, services, and message +telegraf: queues, including InfluxDB and many others. +telegraf: +telegraf: Home-Page: https://www.influxdata.com/ diff --git a/system/telegraf/telegraf b/system/telegraf/telegraf new file mode 100644 index 000000000000..56276508e3ea --- /dev/null +++ b/system/telegraf/telegraf @@ -0,0 +1,3 @@ +# Telegraf options + +TELEGRAF_OPTS="" diff --git a/system/telegraf/telegraf.SlackBuild b/system/telegraf/telegraf.SlackBuild new file mode 100644 index 000000000000..cf86692066fa --- /dev/null +++ b/system/telegraf/telegraf.SlackBuild @@ -0,0 +1,107 @@ +#!/bin/sh + +# Slackware build script for Telegraf + +# Copyright 2017 Ebben Aries <e@dscp.org> +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=telegraf +VERSION=${VERSION:-1.5.0} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +UIDGID=349 +if ! getent group $PRGNAM; then + echo " You must have the \"$PRGNAM\" group to run this script." + echo " # groupadd -g $UIDGID $PRGNAM" + exit 1 +elif ! getent passwd $PRGNAM; then + echo " You must have the \"$PRGNAM\" user to run this script." + echo " # useradd -u $UIDGID -s /bin/false -d /dev/null -g $PRGNAM $PRGNAM" + exit 1 +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "x86_64" ]; then + PKG_ARCH=amd64 +elif [ "$ARCH" = "i586" ] || [ "$ARCH" = "i686" ]; then + PKG_ARCH=i386 +else + echo "$ARCH is not supported." + exit 1 +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM +tar xvf $CWD/$PRGNAM-${VERSION}_linux_${PKG_ARCH}.tar.gz +cd $PRGNAM +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +cp -a . $PKG + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/etc/rc.d +mv $PKG/usr/lib/telegraf/scripts/init.sh $PKG/etc/rc.d/rc.telegraf.new +rm -rf $PKG/usr/lib + +mv $PKG/etc/telegraf/telegraf.conf $PKG/etc/telegraf/telegraf.conf.new +mv $PKG/etc/logrotate.d/telegraf $PKG/etc/logrotate.d/telegraf.new +mkdir -p $PKG/etc/default +cat $CWD/telegraf > $PKG/etc/default/telegraf.new + +chown telegraf:telegraf $PKG/var/log/telegraf +chmod 0755 $PKG/var/log/telegraf + +mkdir -p $PKG/var/run/telegraf +chown telegraf:telegraf $PKG/var/run/telegraf +chmod 0755 $PKG/var/run/telegraf + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/system/telegraf/telegraf.info b/system/telegraf/telegraf.info new file mode 100644 index 000000000000..4f91d9518ca9 --- /dev/null +++ b/system/telegraf/telegraf.info @@ -0,0 +1,10 @@ +PRGNAM="telegraf" +VERSION="1.5.0" +HOMEPAGE="https://www.influxdata.com" +DOWNLOAD="https://dl.influxdata.com/telegraf/releases/telegraf-1.5.0_linux_i386.tar.gz" +MD5SUM="aa05b8ac1ba3976801ad400030db8a10" +DOWNLOAD_x86_64="https://dl.influxdata.com/telegraf/releases/telegraf-1.5.0_linux_amd64.tar.gz" +MD5SUM_x86_64="ee0d741a507853c98f9d04e51cd635a1" +REQUIRES="" +MAINTAINER="Ebben Aries" +EMAIL="e@dscp.org" |