Showing with 1,735 additions and 458 deletions.
  1. +1 −1 .github/workflows/release.yml
  2. +1 −1 .msync.yml
  3. +1 −0 .pmtignore
  4. +2 −0 .rubocop.yml
  5. +12 −0 .rubocop_todo.yml
  6. +0 −2 .sync.yml
  7. +22 −0 CHANGELOG.md
  8. +3 −5 Gemfile
  9. +825 −299 REFERENCE.md
  10. +39 −3 manifests/apache_exporter.pp
  11. +35 −6 manifests/blackbox_exporter.pp
  12. +1 −0 manifests/config.pp
  13. +44 −1 manifests/elasticsearch_exporter.pp
  14. +31 −1 manifests/haproxy_exporter.pp
  15. +14 −11 manifests/init.pp
  16. +5 −1 manifests/mongodb_exporter.pp
  17. +35 −3 manifests/mysqld_exporter.pp
  18. +22 −75 manifests/node_exporter.pp
  19. +32 −1 manifests/postgres_exporter.pp
  20. +2 −0 manifests/server.pp
  21. +195 −0 manifests/wireguard_exporter.pp
  22. +11 −4 metadata.json
  23. +58 −1 spec/classes/apache_exporter_spec.rb
  24. +17 −0 spec/classes/blackbox_exporter_spec.rb
  25. +17 −0 spec/classes/elasticsearch_exporter_spec.rb
  26. +17 −0 spec/classes/haproxy_exporter_spec.rb
  27. +20 −2 spec/classes/mysqld_exporter_spec.rb
  28. +31 −22 spec/classes/node_exporter_spec.rb
  29. +17 −0 spec/classes/postgres_exporter_spec.rb
  30. +37 −0 spec/classes/wireguard_exporter_spec.rb
  31. +4 −1 spec/spec_helper_acceptance.rb
  32. +26 −0 spec/type_aliases/web_config/http_server_config_spec.rb
  33. +43 −0 spec/type_aliases/web_config/tls_server_config_spec.rb
  34. +60 −0 spec/type_aliases/web_config_spec.rb
  35. +11 −11 templates/alertmanager.yaml.erb
  36. +11 −7 templates/prometheus.yaml.erb
  37. +7 −0 types/web_config.pp
  38. +12 −0 types/web_config/http_server_config.pp
  39. +14 −0 types/web_config/tls_server_config.pp
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
release:
name: Release
uses: voxpupuli/gha-puppet/.github/workflows/release.yml@v1
uses: voxpupuli/gha-puppet/.github/workflows/release.yml@v2
with:
allowed_owner: 'voxpupuli'
secrets:
Expand Down
2 changes: 1 addition & 1 deletion .msync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

modulesync_config_version: '7.0.0'
modulesync_config_version: '7.3.0'
1 change: 1 addition & 0 deletions .pmtignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@
/.yardoc/
/.yardopts
/Dockerfile
/HISTORY.md
2 changes: 2 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
---
inherit_from: .rubocop_todo.yml

# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

Expand Down
12 changes: 12 additions & 0 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2023-09-15 08:48:43 UTC using RuboCop version 1.50.2.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.

# Offense count: 6
RSpec/RepeatedExample:
Exclude:
- 'spec/classes/wireguard_exporter_spec.rb'
2 changes: 0 additions & 2 deletions .sync.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
spec/spec_helper.rb:
spec_overrides: "require 'spec_helper_methods'"
spec/spec_helper_acceptance.rb:
unmanaged: false
.github/workflows/ci.yml:
unmanaged: true
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file.
Each new release typically also includes the latest modulesync defaults.
These should not affect the functionality of the module.

## [v14.0.0](https://github.com/voxpupuli/puppet-prometheus/tree/v14.0.0) (2024-03-26)

[Full Changelog](https://github.com/voxpupuli/puppet-prometheus/compare/v13.4.0...v14.0.0)

**Breaking changes:**

- Drop Ubuntu 18.04, allow systemd 6.x [\#704](https://github.com/voxpupuli/puppet-prometheus/pull/704) ([griggi-ws](https://github.com/griggi-ws))
- Rework web-config support for multiple exporters [\#693](https://github.com/voxpupuli/puppet-prometheus/pull/693) ([cruelsmith](https://github.com/cruelsmith))

**Implemented enhancements:**

- add option to enable tracing in Prometheus config [\#705](https://github.com/voxpupuli/puppet-prometheus/pull/705) ([fbegyn](https://github.com/fbegyn))
- Add Debian 12 support [\#703](https://github.com/voxpupuli/puppet-prometheus/pull/703) ([bastelfreak](https://github.com/bastelfreak))
- Cleanup architecture selection, dont fail on unknown architecture [\#702](https://github.com/voxpupuli/puppet-prometheus/pull/702) ([bastelfreak](https://github.com/bastelfreak))
- mongodb\_exporter: make service name and binary path configureable [\#699](https://github.com/voxpupuli/puppet-prometheus/pull/699) ([ansgarwiechers](https://github.com/ansgarwiechers))
- Implement wireguard exporter [\#695](https://github.com/voxpupuli/puppet-prometheus/pull/695) ([bastelfreak](https://github.com/bastelfreak))
- Add OracleLinux support [\#687](https://github.com/voxpupuli/puppet-prometheus/pull/687) ([bastelfreak](https://github.com/bastelfreak))

**Merged pull requests:**

- Remove legacy top-scope syntax [\#706](https://github.com/voxpupuli/puppet-prometheus/pull/706) ([smortex](https://github.com/smortex))

## [v13.4.0](https://github.com/voxpupuli/puppet-prometheus/tree/v13.4.0) (2023-11-08)

[Full Changelog](https://github.com/voxpupuli/puppet-prometheus/compare/v13.3.0...v13.4.0)
Expand Down
8 changes: 3 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ group :test do
gem 'voxpupuli-test', '~> 7.0', :require => false
gem 'coveralls', :require => false
gem 'simplecov-console', :require => false
gem 'puppet_metadata', '~> 3.0', :require => false
gem 'puppet_metadata', '~> 3.5', :require => false
end

group :development do
Expand All @@ -16,13 +16,11 @@ group :development do
end

group :system_tests do
gem 'voxpupuli-acceptance', '~> 2.0', :require => false
gem 'voxpupuli-acceptance', '~> 3.0', :require => false
end

group :release do
gem 'github_changelog_generator', '>= 1.16.1', :require => false
gem 'voxpupuli-release', '~> 3.0', :require => false
gem 'faraday-retry', '~> 2.1', :require => false
gem 'voxpupuli-release', '~> 3.0', :require => false
end

gem 'rake', :require => false
Expand Down
Loading