Showing with 16 additions and 2 deletions.
  1. +14 −0 CHANGELOG.md
  2. +1 −1 functions/pe_profiles_on_host.pp
  3. +1 −1 metadata.json
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

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.12.0](https://github.com/puppetlabs/puppet_operational_dashboards/tree/v1.12.0) (2023-03-27)

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

### Added

- \(SUP-4087\) Add Orchestrator metrics [\#148](https://github.com/puppetlabs/puppet_operational_dashboards/pull/148) ([m0dular](https://github.com/m0dular))
- \(SUP-4065\) Add parameter for group\_by interval [\#146](https://github.com/puppetlabs/puppet_operational_dashboards/pull/146) ([m0dular](https://github.com/m0dular))

### Fixed

- Fix null checks in puppetserver import script [\#149](https://github.com/puppetlabs/puppet_operational_dashboards/pull/149) ([m0dular](https://github.com/m0dular))
- limit apt workaround scope to Debian [\#145](https://github.com/puppetlabs/puppet_operational_dashboards/pull/145) ([vchepkov](https://github.com/vchepkov))

## [v1.11.0](https://github.com/puppetlabs/puppet_operational_dashboards/tree/v1.11.0) (2023-02-28)

[Full Changelog](https://github.com/puppetlabs/puppet_operational_dashboards/compare/v1.10.0...v1.11.0)
Expand Down
2 changes: 1 addition & 1 deletion functions/pe_profiles_on_host.pp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function puppet_operational_dashboards::pe_profiles_on_host() >> Array[String] {
$hosts = puppetdb_query("resources[title] {
type = 'Class' and
certname = '${trusted['certname']}' and
title in ['Puppet_enterprise::Profile::Puppetdb', 'Puppet_enterprise::Profile::Master', 'Puppet_enterprise::Profile::Database'] and
title in ['Puppet_enterprise::Profile::Puppetdb', 'Puppet_enterprise::Profile::Master', 'Puppet_enterprise::Profile::Database', 'Puppet_enterprise::Profile::Orchestrator'] and
nodes { deactivated is null and expired is null }
}").map |$nodes| { $nodes['title'] }
} else {
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-puppet_operational_dashboards",
"version": "1.12.0",
"version": "1.13.0",
"author": "Adrian Parreiras Horta",
"summary": "A module for managing the installation and configuration of metrics dashboards for Puppet Infrastructure.",
"license": "Apache-2.0",
Expand Down