Forge Home

panopta

Official Panopta module

7,493 downloads

5,884 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.

Support the Puppet Community by contributing to this module

You are welcome to contribute to this module by suggesting new features, currency updates, or fixes. Every contribution is valuable to help ensure that the module remains compatible with the latest Puppet versions and continues to meet community needs. Complete the following steps:

  1. Review the module’s contribution guidelines and any licenses. Ensure that your planned contribution aligns with the author’s standards and any legal requirements.
  2. Fork the repository on GitHub, make changes on a branch of your fork, and submit a pull request. The pull request must clearly document your proposed change.

For questions about updating the module, contact the module’s author.

Version information

  • 1.1.1 (latest)
  • 1.1.0 (deleted)
  • 1.0.3
released Apr 27th 2018
This version is compatible with:
  • Puppet Enterprise 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
  • Puppet >= 4.7.0 < 6.0.0
  • ,

Start using this module

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

Add this module to your Puppetfile:

mod 'panopta-panopta', '1.1.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

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

Manually install this module globally with Puppet module tool:

puppet module install panopta-panopta --version 1.1.1

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

panopta/panopta — version 1.1.1 Apr 27th 2018

Panopta

Overview

This module implements and manages the Panopta agent and it's modules.

Module Description

The module allows you to install and configure the Panopta agent easely. It deploys the manifest file with the companies settings. Installs and configures the Panopta agent, and adds the server into your Panopta account.

NOTE: Resource tiltes are not being used.

Variables:

$customer_key
String Required: you can find this at: my.panopta.com > My Account
$server_key
String Optional, defaults to seeded_rand($::fqdn, 65565)
$server_group
Integer Optional, Default: 0 (unset) $aggregator_url
String Default: unset, do not use unless it needs to proxy through the OnSight appliance.
$interface_mapping
Integer Default: unset
$templates
String Optional, Default: 0 (unset) $tags
Array Optional, Default: empty
$fqdn
String Optional, Default: $::fqdn
$server_name
String Optional, Default: $::hostname
$plugins
Hash Optional, Default: empty $enable_counter_measures Boolean Optional, Default: false

Examples:

###Example with only required parameters

class {'panopta':
  customer_key => 'abc-def-hij',
  server_group => 336981
}

###Enabling a module:

class {'panopta':
  customer_key => 'abc-def-hij',
  server_group => 336981,
  modules      => {
    'mysql' => {
      username         => 'username',
      password         => 'password',
      extended_metrics => 'Threads_cached, Threads_connected, Threads_created, Threads_running'
    },
  }
}

###Enabling multiple modules:

class {'panopta':
  customer_key => 'abc-def-hij',
  server_group => 336981,
  modules      => {
    'mysql' => {
      username         => 'username',
      password         => 'password',
      extended_metrics => 'Threads_cached, Threads_connected, Threads_created, Threads_running'
    },
    'nginx' => {
      url => 'http://username:password@localhost:8080/server-status'
    }
  }
}

List of supported plugins with options and examples.

Please refer to the documentation of Panopta: http://help.panopta.com/v1.0/docs/plugins

Limitations

Supported Operating Systems

Ubuntu

  • Ubuntu 10.04
  • Ubuntu 12.04
  • Ubuntu 14.04
  • Ubuntu 16.04

Debian

  • Debian 6
  • Debian 7
  • Debian 8