15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).

## [v1.8.0](https://github.com/puppetlabs/puppet_operational_dashboards/tree/v1.8.0) (2022-11-07)

[Full Changelog](https://github.com/puppetlabs/puppet_operational_dashboards/compare/v1.7.0...v1.8.0)

### Added

- \(SUP-3761\) Add thread and file descriptor panels [\#106](https://github.com/puppetlabs/puppet_operational_dashboards/pull/106) ([m0dular](https://github.com/m0dular))
- \(SUP-3735\) have dashboards autorefresh [\#103](https://github.com/puppetlabs/puppet_operational_dashboards/pull/103) ([MartyEwings](https://github.com/MartyEwings))
- mv telegraf agent os-specific params to hiera data [\#101](https://github.com/puppetlabs/puppet_operational_dashboards/pull/101) ([zoojar](https://github.com/zoojar))
- added insecure\_skip\_verify param [\#100](https://github.com/puppetlabs/puppet_operational_dashboards/pull/100) ([zoojar](https://github.com/zoojar))

### Fixed

- \(SUP-3764\) Fix compatability with Telegraf 1.24.3 [\#109](https://github.com/puppetlabs/puppet_operational_dashboards/pull/109) ([m0dular](https://github.com/m0dular))

## [v1.7.0](https://github.com/puppetlabs/puppet_operational_dashboards/tree/v1.7.0) (2022-10-18)

[Full Changelog](https://github.com/puppetlabs/puppet_operational_dashboards/compare/v1.6.0...v1.7.0)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ For InfluxDB, set:

For Grafana, set:

* [grafana::install_method](https://forge.puppet.com/modules/puppet/grafana/reference#install_method) to either `archive` or `package` depending on your preferred method.
* [puppet_operational_dashboards::profile::dashboards::grafana_install](https://forge.puppet.com/modules/puppetlabs/puppet_operational_dashboards/reference#grafana_install) to either `archive` or `package` depending on your preferred method.

Then, set either of the following depending on the installation method

Expand Down
17 changes: 11 additions & 6 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,7 @@ The following parameters are available in the `puppet_operational_dashboards::te
* [`ssl_cert_file`](#ssl_cert_file)
* [`ssl_key_file`](#ssl_key_file)
* [`ssl_ca_file`](#ssl_ca_file)
* [`insecure_skip_verify`](#insecure_skip_verify)
* [`version`](#version)
* [`archive_location`](#archive_location)
* [`archive_install_dir`](#archive_install_dir)
Expand Down Expand Up @@ -506,8 +507,6 @@ Data type: `Boolean`

Whether to install Telegraf from a repository. Defaults to true on the RedHat family of platforms.

Default value: `$facts['os']['family']`

##### <a name="manage_archive"></a>`manage_archive`

Data type: `Boolean`
Expand Down Expand Up @@ -549,20 +548,26 @@ CA certificate issued by the CA which signed the certificate specified by $ssl_c

Default value: `'/etc/puppetlabs/puppet/ssl/certs/ca.pem'`

##### <a name="insecure_skip_verify"></a>`insecure_skip_verify`

Data type: `Boolean`

Skip verification of SSL certificate. Defaults to true.

Default value: ``true``

##### <a name="version"></a>`version`

Data type: `String`

Version of the Telegraf package to install. Defaults to '1.21.2'.

Default value: `$facts['os']['name']`
Version of the Telegraf package to install. Defaults to '1.24.3'.

##### <a name="archive_location"></a>`archive_location`

Data type: `String`

URL containing an archive source for the telegraf package. Defaults to downloading $version from dl.influxdata.com
Version of the Telegraf package to install. Defaults to '1.21.2'.
Version of the Telegraf package to install. Defaults to '1.24.3'.

Default value: `"https://dl.influxdata.com/telegraf/releases/telegraf-${version.split('-')[0]}_linux_amd64.tar.gz"`

Expand Down
3 changes: 3 additions & 0 deletions data/common.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
puppet_operational_dashboards::telegraf::agent::manage_repo: false
puppet_operational_dashboards::telegraf::agent::version: '1.24.3-1'
2 changes: 2 additions & 0 deletions data/os/family/Debian.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
puppet_operational_dashboards::telegraf::agent::manage_repo: true
2 changes: 2 additions & 0 deletions data/os/family/RedHat.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
puppet_operational_dashboards::telegraf::agent::manage_repo: true
1 change: 1 addition & 0 deletions data/os/name/Ubuntu.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
---
2 changes: 1 addition & 1 deletion files/Filesync_performance.json
Original file line number Diff line number Diff line change
Expand Up @@ -1364,7 +1364,7 @@
}
}
],
"refresh": false,
"refresh": "5m",
"schemaVersion": 32,
"style": "dark",
"tags": [
Expand Down
2 changes: 1 addition & 1 deletion files/Postgresql_performance.json
Original file line number Diff line number Diff line change
Expand Up @@ -2230,7 +2230,7 @@
"type": "timeseries"
}
],
"refresh": false,
"refresh": "5m",
"schemaVersion": 32,
"style": "dark",
"tags": [
Expand Down
Loading