Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chartbeat-labs/puppet-sysstat
Puppet Sysstat Module
https://github.com/chartbeat-labs/puppet-sysstat
Last synced: about 2 months ago
JSON representation
Puppet Sysstat Module
- Host: GitHub
- URL: https://github.com/chartbeat-labs/puppet-sysstat
- Owner: chartbeat-labs
- License: mit
- Created: 2014-02-07T02:34:59.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-09T20:50:02.000Z (almost 10 years ago)
- Last Synced: 2024-10-19T03:17:48.585Z (2 months ago)
- Language: Ruby
- Size: 194 KB
- Stars: 0
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
Puppet Sysstat Module
=====================Puppet module for sysstat.
[![Build Status](https://travis-ci.org/chartbeat-labs/puppet-sysstat.png)](https://travis-ci.org/chartbeat-labs/puppet-sysstat)
Usage
-----Include with default parameters:
```puppet
include sysstat
```Include with the singleton pattern:
```puppet
class { '::sysstat' : }
```### Runtime parameters
If you don't want sysstat running you can disable it:```puppet
class { '::sysstat' :
service_enable => false,
}
```You can change various parameters for sar1:
```puppet
class { '::sysstat' :
sa1_options => '-S ALL'
}
```Or change how long it keeps history for and how soon
to compress data files:```puppet
class { '::sysstat' :
history => 30,
compress => 5,
}
```### Hiera
All of the parameters support hiera lookups. The
hiera key is always of the format:sysstat::*parameter*
So for instance, to selectively enable/disable
sysstat on hosts, create a hiera file with the
following to disable:```
---
sysstat::service_enable: false
```## License
See [LICENSE](LICENSE) file.