diff options
author | Arne Wiebalck <Arne.Wiebalck@cern.ch> | 2021-12-09 19:20:36 +0100 |
---|---|---|
committer | Arne Wiebalck <Arne.Wiebalck@cern.ch> | 2021-12-09 19:20:36 +0100 |
commit | 82c8afb6aef63f0d62fb86a66eac2f429d652378 (patch) | |
tree | e53d139f5947fe7cfaeac52494549723d4e202e4 | |
parent | cdc3b9538f3e874dc7d76a90b116ecef3a3603c7 (diff) | |
download | ironic-82c8afb6aef63f0d62fb86a66eac2f429d652378.tar.gz |
[doc] Add parameters for burn-in log files
Add the options to log the various burn-in steps to a file to the
documentation.
Change-Id: I10ca0a32b407a7f9d60827b4bde799a1688f5c1a
-rw-r--r-- | doc/source/admin/hardware-burn-in.rst | 24 |
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 ====================== |