Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/source/configuration/monitoring.rst
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ To configure the exporter, adjust the variables in
redfish_exporter_default_password: "{{ ipmi_password }}"
# The address of the BMC that is queried by redfish exporter for metrics.
redfish_exporter_target_address: "{{ ipmi_address }}"
redfish_exporter_target_address: "{{ redfish_address | default(ipmi_address, true) }}"
Deploy the exporter on the seed:

Expand Down
2 changes: 1 addition & 1 deletion etc/kayobe/stackhpc-monitoring.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ redfish_exporter_default_username: "{{ ipmi_username }}"
redfish_exporter_default_password: "{{ ipmi_password }}"

# The address of the BMC that is used to query redfish metrics.
redfish_exporter_target_address: "{{ ipmi_address }}"
redfish_exporter_target_address: "{{ redfish_address | default(ipmi_address, true) }}"

# How often to scrape OpenStack Exporter in seconds.
stackhpc_prometheus_openstack_exporter_interval: 300
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
fixes:
- |
Fixes Redfish exporter scrape configuration when hosts are defined with
``redfish_address`` instead of ``ipmi_address``.
Loading