'\" t .TH "SYSTEMD\-ANALYZE" "1" "" "systemd 232" "systemd-analyze" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .\" http://bugs.debian.org/507673 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) .ad l .\" ----------------------------------------------------------------- .\" * MAIN CONTENT STARTS HERE * .\" ----------------------------------------------------------------- .SH "NAME" systemd-analyze \- Analyze system boot\-up performance .SH "SYNOPSIS" .HP \w'\fBsystemd\-analyze\fR\ 'u \fBsystemd\-analyze\fR [OPTIONS...] [time] .HP \w'\fBsystemd\-analyze\fR\ 'u \fBsystemd\-analyze\fR [OPTIONS...] blame .HP \w'\fBsystemd\-analyze\fR\ 'u \fBsystemd\-analyze\fR [OPTIONS...] critical\-chain [\fIUNIT\fR...] .HP \w'\fBsystemd\-analyze\fR\ 'u \fBsystemd\-analyze\fR [OPTIONS...] plot [>\ file\&.svg] .HP \w'\fBsystemd\-analyze\fR\ 'u \fBsystemd\-analyze\fR [OPTIONS...] dot [\fIPATTERN\fR...] [>\ file\&.dot] .HP \w'\fBsystemd\-analyze\fR\ 'u \fBsystemd\-analyze\fR [OPTIONS...] dump .HP \w'\fBsystemd\-analyze\fR\ 'u \fBsystemd\-analyze\fR [OPTIONS...] set\-log\-level \fILEVEL\fR .HP \w'\fBsystemd\-analyze\fR\ 'u \fBsystemd\-analyze\fR [OPTIONS...] set\-log\-target \fITARGET\fR .HP \w'\fBsystemd\-analyze\fR\ 'u \fBsystemd\-analyze\fR [OPTIONS...] verify [\fIFILES\fR...] .SH "DESCRIPTION" .PP \fBsystemd\-analyze\fR may be used to determine system boot\-up performance statistics and retrieve other state and tracing information from the system and service manager, and to verify the correctness of unit files\&. .PP \fBsystemd\-analyze time\fR prints the time spent in the kernel before userspace has been reached, the time spent in the initial RAM disk (initrd) before normal system userspace has been reached, and the time normal system userspace took to initialize\&. Note that these measurements simply measure the time passed up to the point where all system services have been spawned, but not necessarily until they fully finished initialization or the disk is idle\&. .PP \fBsystemd\-analyze blame\fR prints a list of all running units, ordered by the time they took to initialize\&. This information may be used to optimize boot\-up times\&. Note that the output might be misleading as the initialization of one service might be slow simply because it waits for the initialization of another service to complete\&. .PP \fBsystemd\-analyze critical\-chain [\fR\fB\fIUNIT\&.\&.\&.\fR\fR\fB]\fR prints a tree of the time\-critical chain of units (for each of the specified \fIUNIT\fRs or for the default target otherwise)\&. The time after the unit is active or started is printed after the "@" character\&. The time the unit takes to start is printed after the "+" character\&. Note that the output might be misleading as the initialization of one service might depend on socket activation and because of the parallel execution of units\&. .PP \fBsystemd\-analyze plot\fR prints an SVG graphic detailing which system services have been started at what time, highlighting the time they spent on initialization\&. .PP \fBsystemd\-analyze dot\fR generates textual dependency graph description in dot format for further processing with the GraphViz \fBdot\fR(1) tool\&. Use a command line like \fBsystemd\-analyze dot | dot \-Tsvg > systemd\&.svg\fR to generate a graphical dependency tree\&. Unless \fB\-\-order\fR or \fB\-\-require\fR is passed, the generated graph will show both ordering and requirement dependencies\&. Optional pattern globbing style specifications (e\&.g\&. *\&.target) 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\&. .PP \fBsystemd\-analyze dump\fR outputs a (usually very long) human\-readable serialization of the complete server state\&. Its format is subject to change without notice and should not be parsed by applications\&. .PP \fBsystemd\-analyze set\-log\-level \fR\fB\fILEVEL\fR\fR changes the current log level of the \fBsystemd\fR daemon to \fILEVEL\fR (accepts the same values as \fB\-\-log\-level=\fR described in \fBsystemd\fR(1))\&. .PP \fBsystemd\-analyze set\-log\-target \fR\fB\fITARGET\fR\fR changes the current log target of the \fBsystemd\fR daemon to \fITARGET\fR (accepts the same values as \fB\-\-log\-target=\fR, described in \fBsystemd\fR(1))\&. .PP \fBsystemd\-analyze verify\fR will load unit files and print warnings if any errors are detected\&. Files specified on the command line will be loaded, but also any other units referenced by them\&. The full unit search path is formed by combining the directories for all command line arguments, and the usual unit load paths (variable \fI$SYSTEMD_UNIT_PATH\fR is supported, and may be used to replace or augment the compiled in set of unit load paths; see \fBsystemd.unit\fR(5))\&. All units files present in the directories containing the command line arguments will be used in preference to the other paths\&. .PP If no command is passed, \fBsystemd\-analyze time\fR is implied\&. .SH "OPTIONS" .PP The following options are understood: .PP \fB\-\-user\fR .RS 4 Operates on the user systemd instance\&. .RE .PP \fB\-\-system\fR .RS 4 Operates on the system systemd instance\&. This is the implied default\&. .RE .PP \fB\-\-order\fR, \fB\-\-require\fR .RS 4 When used in conjunction with the \fBdot\fR command (see above), selects which dependencies are shown in the dependency graph\&. If \fB\-\-order\fR is passed, only dependencies of type \fIAfter=\fR or \fIBefore=\fR are shown\&. If \fB\-\-require\fR is passed, only dependencies of type \fIRequires=\fR, \fIRequisite=\fR, \fIWants=\fR and \fIConflicts=\fR are shown\&. If neither is passed, this shows dependencies of all these types\&. .RE .PP \fB\-\-from\-pattern=\fR, \fB\-\-to\-pattern=\fR .RS 4 When used in conjunction with the \fBdot\fR command (see above), this selects which relationships are shown in the dependency graph\&. Both options require a \fBglob\fR(7) pattern as an argument, which will be matched against the left\-hand and the right\-hand, respectively, nodes of a relationship\&. .sp Each of these can be used more than once, in which case the unit name must match one of the values\&. When tests for both sides of the relation are present, a relation must pass both tests to be shown\&. When patterns are also specified as positional arguments, they must match at least one side of the relation\&. In other words, patterns specified with those two options will trim the list of edges matched by the positional arguments, if any are given, and fully determine the list of edges shown otherwise\&. .RE .PP \fB\-\-fuzz=\fR\fItimespan\fR .RS 4 When used in conjunction with the \fBcritical\-chain\fR command (see above), also show units, which finished \fItimespan\fR earlier, than the latest unit in the same level\&. The unit of \fItimespan\fR is seconds unless specified with a different unit, e\&.g\&. "50ms"\&. .RE .PP \fB\-\-no\-man\fR .RS 4 Do not invoke man to verify the existence of man pages listed in \fIDocumentation=\fR\&. .RE .PP \fB\-H\fR, \fB\-\-host=\fR .RS 4 Execute the operation remotely\&. Specify a hostname, or a username and hostname separated by "@", to connect to\&. The hostname may optionally be suffixed by a container name, separated by ":", which connects directly to a specific container on the specified host\&. This will use SSH to talk to the remote machine manager instance\&. Container names may be enumerated with \fBmachinectl \-H \fR\fB\fIHOST\fR\fR\&. .RE .PP \fB\-M\fR, \fB\-\-machine=\fR .RS 4 Execute operation on a local container\&. Specify a container name to connect to\&. .RE .PP \fB\-h\fR, \fB\-\-help\fR .RS 4 Print a short help text and exit\&. .RE .PP \fB\-\-version\fR .RS 4 Print a short version string and exit\&. .RE .PP \fB\-\-no\-pager\fR .RS 4 Do not pipe output into a pager\&. .RE .SH "EXIT STATUS" .PP On success, 0 is returned, a non\-zero failure code otherwise\&. .SH "EXAMPLES FOR DOT" .PP \fBExample\ \&1.\ \&Plots all dependencies of any unit whose name starts with "avahi\-daemon"\fR .sp .if n \{\ .RS 4 .\} .nf $ systemd\-analyze dot \*(Aqavahi\-daemon\&.*\*(Aq | dot \-Tsvg > avahi\&.svg $ eog avahi\&.svg .fi .if n \{\ .RE .\} .PP \fBExample\ \&2.\ \&Plots the dependencies between all known target units\fR .sp .if n \{\ .RS 4 .\} .nf systemd\-analyze dot \-\-to\-pattern=\*(Aq*\&.target\*(Aq \-\-from\-pattern=\*(Aq*\&.target\*(Aq | dot \-Tsvg > targets\&.svg $ eog targets\&.svg .fi .if n \{\ .RE .\} .SH "EXAMPLES FOR VERIFY" .PP The following errors are currently detected: .sp .RS 4 .ie n \{\ \h'-04'\(bu\h'+03'\c .\} .el \{\ .sp -1 .IP \(bu 2.3 .\} unknown sections and directives, .RE .sp .RS 4 .ie n \{\ \h'-04'\(bu\h'+03'\c .\} .el \{\ .sp -1 .IP \(bu 2.3 .\} missing dependencies which are required to start the given unit, .RE .sp .RS 4 .ie n \{\ \h'-04'\(bu\h'+03'\c .\} .el \{\ .sp -1 .IP \(bu 2.3 .\} man pages listed in \fIDocumentation=\fR which are not found in the system, .RE .sp .RS 4 .ie n \{\ \h'-04'\(bu\h'+03'\c .\} .el \{\ .sp -1 .IP \(bu 2.3 .\} commands listed in \fIExecStart=\fR and similar which are not found in the system or not executable\&. .RE .PP \fBExample\ \&3.\ \&Misspelt directives\fR .sp .if n \{\ .RS 4 .\} .nf $ cat \&./user\&.slice [Unit] WhatIsThis=11 Documentation=man:nosuchfile(1) Requires=different\&.service [Service] Desription=x $ systemd\-analyze verify \&./user\&.slice [\&./user\&.slice:9] Unknown lvalue \*(AqWhatIsThis\*(Aq in section \*(AqUnit\*(Aq [\&./user\&.slice:13] Unknown section \*(AqService\*(Aq\&. Ignoring\&. Error: org\&.freedesktop\&.systemd1\&.LoadFailed: Unit different\&.service failed to load: No such file or directory\&. Failed to create user\&.slice/start: Invalid argument user\&.slice: man nosuchfile(1) command failed with code 16 .fi .if n \{\ .RE .\} .PP \fBExample\ \&4.\ \&Missing service units\fR .sp .if n \{\ .RS 4 .\} .nf $ tail \&./a\&.socket \&./b\&.socket ==> \&./a\&.socket <== [Socket] ListenStream=100 ==> \&./b\&.socket <== [Socket] ListenStream=100 Accept=yes $ systemd\-analyze verify \&./a\&.socket \&./b\&.socket Service a\&.service not loaded, a\&.socket cannot be started\&. Service b@0\&.service not loaded, b\&.socket cannot be started\&. .fi .if n \{\ .RE .\} .SH "ENVIRONMENT" .PP \fI$SYSTEMD_PAGER\fR .RS 4 Pager to use when \fB\-\-no\-pager\fR is not given; overrides \fI$PAGER\fR\&. If neither \fI$SYSTEMD_PAGER\fR nor \fI$PAGER\fR are set, a set of well\-known pager implementations are tried in turn, including \fBless\fR(1) and \fBmore\fR(1), until one is found\&. If no pager implementation is discovered no pager is invoked\&. Setting this environment variable to an empty string or the value "cat" is equivalent to passing \fB\-\-no\-pager\fR\&. .RE .PP \fI$SYSTEMD_LESS\fR .RS 4 Override the options passed to \fBless\fR (by default "FRSXMK")\&. .RE .PP \fI$SYSTEMD_LESSCHARSET\fR .RS 4 Override the charset passed to \fBless\fR (by default "utf\-8", if the invoking terminal is determined to be UTF\-8 compatible)\&. .RE .SH "SEE ALSO" .PP \fBsystemd\fR(1), \fBsystemctl\fR(1)