diff --git a/content/collectd.rst b/content/collectd.rst deleted file mode 100644 index 7f8798c6597dc7f74ea1b212fbc5fffc2dd7f135..0000000000000000000000000000000000000000 --- a/content/collectd.rst +++ /dev/null @@ -1,10 +0,0 @@ -Configuring Collectd for use with Riemann -######################################### -:date: 2014-10-26 -:summary: How I use Collectd to push information to Riemann -:status: draft - -Installing Collectd -------------------- - - diff --git a/content/riemann.rst b/content/riemann.rst deleted file mode 100644 index 4c128f622d83cb6345075c54676b8ec661aacb65..0000000000000000000000000000000000000000 --- a/content/riemann.rst +++ /dev/null @@ -1,43 +0,0 @@ -Installing Riemann on Debian Wheezy -################################### -:date: 2014-10-26 -:summary: How I installed Riemann on Debian Wheezy. -:status: draft - -#. Install dependencies. :: - - $ sudo apt-get install openjdk-7-jre ruby-dev build-essential - -#. Grab the debian package from the riemann.io front page and install (at time - of writing version 0.2.6) :: - - $ wget http://aphyr.com/riemann/riemann_0.2.6_all.deb - $ sudo dpkg -i riemann_0.2.6_all.deb - -#. Configure Riemann. In /etc/riemann/riemann.config change the host to 0.0.0.0 - . Add the following line to /etc/default/riemann: - - EXTRA_JAVA_OPTS="-Djava.net.preferIPv4Stack=true" - -#. Start the service :: - - $ sudo service riemann start - -#. Install the Riemann dashboard. :: - - $ sudo apt-get install ruby - $ sudo gem install riemann-dash - -#. Create an Upstart configuration file for riemann-dash. - - $ cat > /etc/init/riemann-dash.conf << EOF - author "Nimrod Adar <nimrod.adar@wiser.com>" - description "The Riemann dashboard." - start on runlevel [2345] - stop on runlevel [!2345] - respawn - respawn limit 10 10 - exec /usr/local/bin/riemann-dash - EOF - -