Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sensu/sensu-puppet
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.19.2
Choose a base ref
...
head repository: sensu/sensu-puppet
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.20.0
Choose a head ref
  • 3 commits
  • 14 files changed
  • 3 contributors

Commits on Jul 11, 2017

  1. (#597) Add sensu::contact type (Enterprise Only)

    Without this patch the Puppet module doesn't provide an affordance for [contact
    routing](https://sensuapp.org/docs/0.29/enterprise/contact-routing.html)  This
    patch addresses the problem by adding a new defined type, sensu::contact backed
    by a custom type and provider for sensu_contact.
    
    Example usage:
    
        sensu::contact { 'support':
          config => { 'email'  => { 'to' => 'support@example.com' } },
        }
        sensu::contact { 'ops':
          config => { 'email'  => { 'to' => 'ops@example.com' } },
        }
        sensu::check { 'check_ntp':
          command     => 'PATH=$PATH:/usr/lib64/nagios/plugins check_ntp_time -H pool.ntp.org -w 30 -c 60',
          handlers    => 'email',
          contacts    => ['ops', 'support'],
        }
    
    Resolves #597
    jeffmccune committed Jul 11, 2017
    Configuration menu
    Copy the full SHA
    4d767b2 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #728 from jeffmccune/597_add_contact_routing_type

    (#597) Add sensu::contact type (Enterprise Only)
    ghoneycutt authored Jul 11, 2017
    Configuration menu
    Copy the full SHA
    1f46028 View commit details
    Browse the repository at this point in the history
  3. Release v2.20.0

    Add ability to define contact routing in Sensu Enterprise.
    ghoneycutt committed Jul 11, 2017
    Configuration menu
    Copy the full SHA
    22cffaf View commit details
    Browse the repository at this point in the history
Loading