summaryrefslogtreecommitdiff
path: root/man/systemd-analyze.xml
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2013-04-08 19:42:48 +0200
committerLennart Poettering <lennart@poettering.net>2013-04-08 20:35:25 +0200
commit816f25e86ab690da6e408bc8d5b03dae9cc1b219 (patch)
tree875a42e9432b62501fcac1d6fa44165d50324d66 /man/systemd-analyze.xml
parent903a0b07e003c1ad976dc30e98b69a70778007ad (diff)
analyze: various cleanups
Diffstat (limited to 'man/systemd-analyze.xml')
-rw-r--r--man/systemd-analyze.xml38
1 files changed, 28 insertions, 10 deletions
diff --git a/man/systemd-analyze.xml b/man/systemd-analyze.xml
index c8d0b4743..9f313d76f 100644
--- a/man/systemd-analyze.xml
+++ b/man/systemd-analyze.xml
@@ -93,20 +93,21 @@
been started at what time, highlighting the time they
spent on initialization.</para>
- <para><command>systemd-analyze dot</command>
- Generate textual dependency graph description in dot
- format for further processing with the GraphViz
+ <para><command>systemd-analyze dot</command> Generate
+ textual dependency graph description in dot format for
+ further processing with the GraphViz
<citerefentry><refentrytitle>dot</refentrytitle><manvolnum>1</manvolnum></citerefentry>
tool. Use a command line like <command>systemd-analyze
- dot | dot -Tsvg > systemd.svg</command> to generate
- a graphical dependency tree. Unless
+ dot | dot -Tsvg > systemd.svg</command> to generate a
+ graphical dependency tree. Unless
<option>--order</option> or <option>--require</option>
is passed the generated graph will show both ordering
- and requirement dependencies.</para>
-
- <para>Optional patterns may be given at the end. The
- relationship is printed if any of these matches either
- lefthand or righthand node.</para>
+ and requirement dependencies. Optional pattern
+ globbing style specifications
+ (e.g. <filename>*.target</filename>) may be given at
+ the end. A unit dependency is included in the graph if
+ any of these patterns match either the origin or
+ destination node.</para>
<para>If no command is passed <command>systemd-analyze
time</command> is implied.</para>
@@ -192,6 +193,23 @@
</refsect1>
<refsect1>
+ <title>Examples</title>
+
+ <para>This plots all dependencies of any unit whose
+ name starts with "<literal>avahi-daemon.</literal>":</para>
+
+ <programlisting>$ systemd-analyze dot 'avahi-daemon.*' | dot -Tsvg > avahi.svg
+$ eog avahi.svg</programlisting>
+
+ <para>This plots the dependencies between all known target units:</para>
+
+ <programlisting>systemd-analyze dot --to-pattern='*.target' --from-patter='*.target' | dot -Tsvg > targets.svg
+$ eog targets.svg</programlisting>
+
+
+ </refsect1>
+
+ <refsect1>
<title>See Also</title>
<para>
<citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,