summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-01-07 10:27:37 +0000
committerGerrit Code Review <review@openstack.org>2022-01-07 10:27:37 +0000
commit2e2d6b8eeb9219ecd237bb7c1423d1ec90ebfb87 (patch)
tree54a5ca4d425c85fe4a221dc02ae59d7031dba14b
parentd3ccd4d3a910a0d9913508f236f2a0f9f416371e (diff)
parent82c8afb6aef63f0d62fb86a66eac2f429d652378 (diff)
downloadironic-2e2d6b8eeb9219ecd237bb7c1423d1ec90ebfb87.tar.gz
Merge "[doc] Add parameters for burn-in log files"
-rw-r--r--doc/source/admin/hardware-burn-in.rst24
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/source/admin/hardware-burn-in.rst b/doc/source/admin/hardware-burn-in.rst
index ea2406a07..d62e219c0 100644
--- a/doc/source/admin/hardware-burn-in.rst
+++ b/doc/source/admin/hardware-burn-in.rst
@@ -145,6 +145,30 @@ Then launch the test with:
Both nodes will wait for the other node to show up and block while waiting.
If the partner does not show up, the cleaning timeout will step in.
+Logging
+=======
+
+Since most of the burn-in steps are also providing information about the
+performance of the stressed components, keeping this information for
+verification or acceptance purposes may be desirable. By default, the
+output of the burn-in tools goes to the journal of the Ironic Python
+Agent and is therefore sent back as an archive to the conductor. In order
+to consume the output of the burn-in steps more easily, or even in real-time,
+the nodes can be configured to store the output of the individual steps to
+files in the ramdisk (from where they can be picked up by a logging pipeline).
+
+The configuration of the outpout file is done via one of
+``agent_burnin_cpu_outputfile``, ``agent_burnin_vm_outputfile``,
+``agent_burnin_fio_disk_outputfile``, and
+``agent_burnin_fio_network_outputfile`` parameters which need to be added
+to a node like:
+
+.. code-block:: console
+
+ baremetal node set --driver-info agent_burnin_cpu_outputfile=\
+ '/var/log/burnin.cpu' $NODE_NAME_OR_UUID
+
+
Additional Information
======================