Forge Home

redis_statsd_reporter

Setup and manage redis-statsd-reporter

21,028 downloads

16,236 latest version

5.0 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 1.1.0 (latest)
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
released Jul 11th 2016
This version is compatible with:
  • Puppet Enterprise >=3.0.0
  • Puppet >=3.0.0
  • , , , , ,

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'andyroyle-redis_statsd_reporter', '1.1.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add andyroyle-redis_statsd_reporter
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install andyroyle-redis_statsd_reporter --version 1.1.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

andyroyle/redis_statsd_reporter — version 1.1.0 Jul 11th 2016

puppet-redis_statsd_reporter

Build Status Puppet Forge

Description

This Puppet module will install redis-statsd-reporter on Debian or RedHat.

Installation

puppet module install --modulepath /path/to/puppet/modules andyroyle-redis_statsd_reporter

Requirements

This module assumes nodejs & npm is installed on the host, but will not do it for you. I recommend using puppet/nodejs to set this up.

Usage

    class { 'redis_statsd_reporter':
      servers => [
        {
          host     => 'my.redis.1.domain.com',
          port     => 6379,                 # default 6379
          tags     => {                     # tags are only supported by influxdb backend
            foo => 'bar'
          },
          prefix   => 'foo.bar.redis.yay' # prefix to apply to the metric name
          password => 'foobar'
        }
      ],
      statsd => {
        host     => 'localhost',
        port     => 8125,
        interval => 10 # interval in seconds to send metrics
      }
    }

Testing

bundle install
bundle exec librarian-puppet install
vagrant up

Custom Nodejs Environment

Use the $environment parameter to add custom environment variables or run scripts in the /etc/default/redis-statsd-reporter file:

class { 'redis-statsd-reporter':
  # ...
  environment  => [
    'PATH=/opt/my/path:$PATH',
  ]
}

This looks familiar

Module structure largely copy-pasted from puppet-statsd