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 12 years ago)
- Default Branch: master
- Last Pushed: 2015-03-09T20:50:02.000Z (almost 11 years ago)
- Last Synced: 2025-10-19T13:31:58.108Z (2 months ago)
- Language: Ruby
- Size: 194 KB
- Stars: 0
- Watchers: 3
- 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.
[](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.