Forge Home

cloudinsight_agent

Install Cloudinsight agent and run.

6,232 downloads

6,232 latest version

2.3 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

  • 0.1.0 (latest)
released Aug 10th 2016
This version is compatible with:
  • Puppet Enterprise 3.2.x
  • Puppet >=2.7.20 <4.0.0
  • , , , , ,

Start using this module

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

Add this module to your Puppetfile:

mod 'cloudinsight-cloudinsight_agent', '0.1.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

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

Manually install this module globally with Puppet module tool:

puppet module install cloudinsight-cloudinsight_agent --version 0.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

cloudinsight/cloudinsight_agent — version 0.1.0 Aug 10th 2016

Puppet & cloudinsight-agent

Description

A module to install the cloudinsight-agent.

Requirements

Puppet 2.7.x or 3.x.

Installation

Install cloudinsight-agent as a module in your Puppet master's module path.

puppet module install cloudinsight-cloudinsight_agent

Usage

  1. To deploy the Cloudinsight agent on nodes, add to your manifests this parametrized class with your license key

    node "app.mydomain.com" {
      class { 'cloudinsight_agent':
        license_key => "yourkey",
        # parameters go here.
      }
    }
    
  2. To use a specific agent check or integration on one your nodes, you can refer to each manifest for a sample usage. Here is an example for the mongo integration:

    node "mongo.mydomain.com" {
      class { "cloudinsight_agent":
         license_key => "your license key"
      }
      include 'cloudinsight_agent::integrations::mongo'
    }
    

Parameters

  • license_key - Required. The Cloudinsight license key to associate your Agent's data with your organization.
  • hostname - Default node hostname. Force the hostname to whatever you want if you want.
  • tags - Set the host's tags.
  • log_level - Default INFO.
  • proxy_host - Your proxy server.
  • proxy_port - Your proxy server port.
  • proxy_user - Your proxy account.
  • proxy_password - Your proxy account password.
  • proxy_forbid_method_switch - Default no. To be used with some proxys that return a 302 which make curl switch from POST to GET.
  • skip_ssl_validation - Default no. Might want to set to yes if run agent behind haproxy.