Skip to content

Commit 437fe0a

Browse files
author
Mesaguy
committed
The ipmi_exporter name changed from ipmi_exporter_soundcloud to ipmi_exporter_prometheus_community
1 parent 7a54052 commit 437fe0a

8 files changed

+40
-39
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
### Changed
1010

11+
- The ipmi_exporter name changed from ipmi_exporter_soundcloud to ipmi_exporter_prometheus_community
1112
- Upgrade Go from v1.16.5 to v1.16.8
1213
- Upgrade Prometheus (pre-release) from v2.29.0-rc.2 to v2.30.0-rc.0
1314
- Upgrade Prometheus from v2.29.2 to v2.30.3

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ See each exporter's usage page for more details:
6767
|[grok_exporter_fstab](https://github.com/fstab/grok_exporter) | [usage](docs/grok_exporter_fstab.md) | fstab | Yes |
6868
|[haproxy_exporter](https://github.com/prometheus/haproxy_exporter) | [usage](docs/haproxy_exporter.md) | prometheus | Yes |
6969
|[influxdb_exporter](https://github.com/prometheus/influxdb_exporter) | [usage](docs/influxdb_exporter.md) | prometheus | Yes |
70-
|[ipmi_exporter_soundcloud](https://github.com/soundcloud/ipmi_exporter) | [usage](docs/ipmi_exporter_soundcloud.md) | soundcloud | Yes |
70+
|[ipmi_exporter_prometheus_community](https://github.com/prometheus-community/ipmi_exporter) | [usage](docs/ipmi_exporter_prometheus_community.md) | prometheus-community | Yes |
7171
|[iperf3_exporter_edgard](https://github.com/edgard/iperf3_exporter) | [usage](docs/iperf3_exporter_edgard) | edgard | Yes |
7272
|[iptables_exporter_retailnext](https://github.com/retailnext/iptables_exporter) | [usage](docs/iptables_exporter_retailnext.md) | retailnext | Yes |
7373
|[jmx_exporter](https://github.com/prometheus/jmx_exporter) | [usage](docs/jmx_exporter.md) | prometheus | No |
@@ -161,7 +161,7 @@ prometheus_components:
161161
- haproxy_exporter
162162
- influxdb_exporter
163163
- iperf3_exporter_edgard
164-
- ipmi_exporter_soundcloud
164+
- ipmi_exporter_prometheus_community
165165
- iptables_exporter_retailnext
166166
- jmx_exporter
167167
- kafka_exporter_danielqsj
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# ipmi exporter (prometheus-community) configuration
2+
3+
To enable [ipmi_exporter by prometheus-community](https://github.com/prometheus-community/ipmi_exporter) include role task: ipmi_exporter_prometheus_community
4+
5+
If no configuration content is defined, a default (empty) configuration file is utilized:
6+
7+
prometheus_ipmi_exporter_prometheus_community_cfg: '{{ lookup("file", "../files/ipmi_exporter_prometheus_community.yml") | from_yaml }}'
8+
9+
An array of additional flags to pass to the ipmi_exporter daemon (ie):
10+
11+
prometheus_ipmi_exporter_prometheus_community_extra_opts:
12+
- '-config.file={{ prometheus_etc_dir }}/ipmi_exporter_prometheus_community.yml'
13+
14+
The version of ipmi_exporter_prometheus_community to install. The default version can be found in the [ipmi_exporter_prometheus_community variables file](../vars/software/ipmi_exporter_prometheus_community.yml) and the default version can be overridden using the following variable:
15+
16+
prometheus_ipmi_exporter_prometheus_community_version: "v1.0.0"
17+
18+
Allow the use of prerelease versions (beta, test, development, etc versions), defaults to 'false':
19+
20+
prometheus_ipmi_exporter_prometheus_community_use_prerelease: true
21+
22+
Port and IP to listen on. Defaults to listening on all available IPs on port 9290:
23+
24+
prometheus_ipmi_exporter_prometheus_community_host: "0.0.0.0"
25+
prometheus_ipmi_exporter_prometheus_community_port: 9290

docs/ipmi_exporter_soundcloud.md

-25
This file was deleted.

tasks/ipmi_exporter_soundcloud.yml tasks/ipmi_exporter_prometheus_community.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
include_tasks: _setup.yml
55
when: prometheus_setup_task_executed is undefined
66

7-
- name: Starting ipmi_exporter (soundcloud) install
7+
- name: Starting ipmi_exporter (prometheus-community) install
88
set_fact:
99
prometheus_exporter: true
10-
prometheus_software_author: soundcloud
10+
prometheus_software_author: prometheus-community
1111
prometheus_software_binary_name: ipmi_exporter
1212
prometheus_software_makefile_make_command: 'make build'
13-
prometheus_software_name: ipmi_exporter_soundcloud
13+
prometheus_software_name: ipmi_exporter_prometheus_community
1414
prometheus_software_description: 'Prometheus ipmi_exporter for exporting IPMI statistics'
15-
prometheus_software_documentation: 'https://github.com/soundcloud/ipmi_exporter'
15+
prometheus_software_documentation: 'https://github.com/prometheus-community/ipmi_exporter'
1616

1717
- name: Include task to setup {{ prometheus_software_name }} facts
1818
include_tasks: _setup_software_facts.yml
@@ -29,8 +29,8 @@
2929
- name: Setup {{ prometheus_software_name_version }} configuration file
3030
become: true
3131
copy:
32-
content: '{{ prometheus_ipmi_exporter_soundcloud_cfg | default(lookup("file", "../files/ipmi_exporter_soundcloud.yml")) }}'
33-
dest: '{{ prometheus_etc_dir }}/ipmi_exporter_soundcloud.yml'
32+
content: '{{ prometheus_ipmi_exporter_prometheus_community_cfg | default(lookup("file", "../files/ipmi_exporter_prometheus_community.yml")) }}'
33+
dest: '{{ prometheus_etc_dir }}/ipmi_exporter_prometheus_community.yml'
3434
owner: root
3535
group: '{{ prometheus_group }}'
3636
mode: 0640

tests/inspec/default/ipmi_exporter_soundcloud.rb tests/inspec/default/ipmi_exporter_prometheus_community.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
# encoding: utf-8
22
# author: Mesaguy
33

4-
describe file('/opt/prometheus/exporters/ipmi_exporter_soundcloud/active') do
4+
describe file('/opt/prometheus/exporters/ipmi_exporter_prometheus_community/active') do
55
it { should be_symlink }
66
its('mode') { should cmp '0755' }
77
its('owner') { should eq 'root' }
88
its('group') { should eq 'prometheus' }
99
end
1010

11-
describe file('/opt/prometheus/exporters/ipmi_exporter_soundcloud/active/ipmi_exporter') do
11+
describe file('/opt/prometheus/exporters/ipmi_exporter_prometheus_community/active/ipmi_exporter') do
1212
it { should be_file }
1313
it { should be_executable }
1414
its('mode') { should cmp '0755' }
1515
its('owner') { should eq 'root' }
1616
its('group') { should eq 'prometheus' }
1717
end
1818

19-
describe service('ipmi_exporter_soundcloud') do
19+
describe service('ipmi_exporter_prometheus_community') do
2020
it { should be_enabled }
2121
it { should be_installed }
2222
it { should be_running }
2323
end
2424

25-
describe processes(Regexp.new("^/opt/prometheus/exporters/ipmi_exporter_soundcloud/(v)?([0-9.]+|[0-9.]+__go-[0-9.]+)/ipmi_exporter")) do
25+
describe processes(Regexp.new("^/opt/prometheus/exporters/ipmi_exporter_prometheus_community/(v)?([0-9.]+|[0-9.]+__go-[0-9.]+)/ipmi_exporter")) do
2626
it { should exist }
2727
its('entries.length') { should eq 1 }
2828
its('users') { should include 'prometheus' }

vars/software/ipmi_exporter_soundcloud.yml vars/software/ipmi_exporter_prometheus_community.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ software:
66
name: soundcloud/ipmi_exporter
77
release: v1.4.0
88
prerelease: null
9-
url: https://github.com/soundcloud/ipmi_exporter
9+
url: https://github.com/prometheus-community/ipmi_exporter
1010
source: https://github.com/prometheus-community/ipmi_exporter.git
11-
updated: '2021-10-06T19:00:59.559189'
11+
updated: '2021-10-06T20:18:34.478907'
1212
master:
1313
commit:
1414
sha: b806738818fe9e6bf5dbf23abba97392bf53786b

0 commit comments

Comments
 (0)