Forge Home

ci_agent

Install the OneAPM Cloud Insight monitoring agent and run.

7,916 downloads

7,629 latest version

2.2 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.2 (latest)
  • 0.1.1 (deleted)
  • 0.1.0 (deleted)
released Nov 16th 2015
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 'oneapm-ci_agent', '0.1.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

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

Manually install this module globally with Puppet module tool:

puppet module install oneapm-ci_agent --version 0.1.2

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

oneapm/ci_agent — version 0.1.2 Nov 16th 2015

Puppet & oneapm-ci_agent

Description

A module to install the oneapm-ci-agent.

Requirements

Puppet 2.7.x or 3.x.

Installation

Install oneapm-ci_agent as a module in your Puppet master's module path.

puppet module install oneapm-ci_agent

Usage

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

    node "app.mydomain.com" {
      class { 'ci_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 { "ci_agent":
         license_key => "your license key"
      }
      include 'ci_agent::integrations::mongo'
    }
    

Parameters

  • license_key - Required. The OneAPM Cloud Insight 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.