From 65c4f3f3ba08420bf5682d56a49f14230271a8e3 Mon Sep 17 00:00:00 2001
From: Georges Da Costa <dacosta@irit.fr>
Date: Wed, 6 Nov 2024 16:16:15 +0100
Subject: [PATCH] Finishes the new examples for monitoring

---
 docs/expetator.monitors.rst | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/docs/expetator.monitors.rst b/docs/expetator.monitors.rst
index ac9d555..37c1f5e 100644
--- a/docs/expetator.monitors.rst
+++ b/docs/expetator.monitors.rst
@@ -6,11 +6,12 @@ Available monitors
 
 .. autoclass:: expetator.monitors.kwollect.Power
 
-For Grid5000 you can select the most precise wattmeter using the following invocation
+For Grid5000 you can select the most precise wattmeter for you own cluster using the following invocation
 ```
 kwollect.Power(metric=kwollect.get_g5k_target_metric())
 ```
-Example of use of KWollect with results in /tmp/demo_power_XXX and power measures in /tmp/demo_power_XXX_power
+Example of use of KWollect, ie power monitoring of servers on grid5000.
+The result will be in a file **/tmp/power_demo_${HOST}_${TIMESTAMP_START}** and directories starting with **/tmp/power_demo_${HOST}_${TIMESTAMP_START}_power**
 
 .. code-block:: python
 
@@ -25,7 +26,7 @@ Example of use of KWollect with results in /tmp/demo_power_XXX and power measure
                ]
     BENCHMARKS = [SleepBench(default_time=10)]
     
-    experiment.run_experiment('/tmp/demo_power',
+    experiment.run_experiment('/tmp/power_demo',
                               benchmarks = BENCHMARKS,
                               monitors = MONITORS,
                              )
@@ -35,7 +36,8 @@ Example of use of KWollect with results in /tmp/demo_power_XXX and power measure
 
 .. autoclass:: expetator.monitors.mojitos.Mojitos
 
-Example of use of MojitO/S with RAPL, system load, and ethernet network. With results in /tmp/demo_moj_XXXX and MojitO/S in /tmp/demo_moj_XXXX_mojitos directory
+Example of use of MojitO/S with RAPL, system load, and ethernet network. 
+The result will be in a file **/tmp/mojitos_demo_${HOST}_${TIMESTAMP_START}** and directories starting with **/tmp/mojitos_demo_${HOST}_${TIMESTAMP_START}_mojitos**
 
 .. code-block:: python
 
@@ -50,7 +52,7 @@ Example of use of MojitO/S with RAPL, system load, and ethernet network. With re
                ]
     BENCHMARKS = [SleepBench(default_time=10)]
     
-    experiment.run_experiment('/tmp/demo_moj',
+    experiment.run_experiment('/tmp/mojitos_demo',
                               benchmarks = BENCHMARKS,
                               monitors = MONITORS,
                              )
-- 
GitLab