]> granicus.if.org Git - sysstat/commitdiff
Update FAQ
authorSebastien GODARD <sysstat@users.noreply.github.com>
Mon, 6 Aug 2018 16:33:06 +0000 (18:33 +0200)
committerSebastien GODARD <sysstat@users.noreply.github.com>
Mon, 6 Aug 2018 16:33:06 +0000 (18:33 +0200)
Signed-off-by: Sebastien GODARD <sysstat@users.noreply.github.com>
FAQ.md

diff --git a/FAQ.md b/FAQ.md
index 681ea6cbe6835e35179e4c1bac34650614f7e1e4..5dc05c99a60a2096955ca337e24d4264867fbb99 100644 (file)
--- a/FAQ.md
+++ b/FAQ.md
@@ -549,7 +549,7 @@ Example: To tell sadc to collect only temperature sensors activity
 in addition to the default set of activities, enter:
 
 ```
-sadc -S A_PWR_TEMP
+sadc -S A_PWR_TEMP (...)
 ```
 
 followed by the other classic options (interval, count, filename...)
@@ -557,10 +557,16 @@ Now assume you want to collect temperature sensors activity **without**
 the other activities collected by default,
 add the special report name A_NULL to the list passed to sadc, e.g.:
 ```
-sadc -S A_NULL,A_PWR_TEMP
+sadc -S A_NULL,A_PWR_TEMP (...)
 ```
 Of course you can enter as many report names as you want to collect
 different activities.
+Last you can exclude a specific activity from a list by prefixing its
+report name with a dash. For example, to collect all possible activities
+**except** statistics for interrupts, enter:
+```
+sadc -S XALL,-A_IRQ (...)
+```
 This way you can tell sadc to collect only the desired activities.
 
 ---