ideia básica
Eu ficaria tentado a fazer isso como um serviço systemd que registra isso em um arquivo:
$ systemd-analyze time | sed 's/Startup finished in //;s/ +.*(initrd)//;s/ =.*$//'
442ms (kernel) + 10.224s (userspace)
Isso reduz a saída de systemd-analyze time
para apenas os bits desejados. O resto das informações que você deseja é fácil de obter por meio das próprias linhas de comando uname
e gnome-shell
:
$ systemd-analyze time | \
sed 's/Startup finished in //;s/ +.*(initrd)//;s/ =.*$//'; \
printf "kernel: %s\ngnome-shell: %s\n" "$(uname -r)" "$(gnome-shell --version)"
442ms (kernel) + 10.224s (userspace)
kernel: 3.10.0-693.21.1.el7.x86_64
gnome-shell: GNOME Shell 3.25.4
Mais refinado
Como um script acima:
$ cat ./boottime.bash
#!/bin/bash
printf "[%s]\n" "$(date)"
printf ".......Boot time [s]: %s\n" "$(systemd-analyze time | sed 's/Startup finished in //;s/ +.*(initrd)//;s/ =.*$//')"
printf ".......with kernel version: %s\n" "$(uname -r)"
printf ".......gnome-shell version: %s\n" "$(gnome-shell --version)"
#[day]
#.......Boot time [s]: 2.145 (kernel) + 13.675 (userspace)
#.......with kernel version 4.11.2
#.......gnome-shell version 3.24.1
#[day+1]
#.......Boot time [s]: 3.145 (kernel) + 21.665 (userspace)
#.......with kernel version 4.17.11
#.......gnome-shell version 3.28.3
A saída:
$ ./boottime.bash
[Sat Aug 4 14:34:40 EDT 2018]
.......Boot time [s]: 442ms (kernel) + 10.224s (userspace)
.......with kernel version: 3.10.0-693.21.1.el7.x86_64
.......gnome-shell version: GNOME Shell 3.25.4
O arquivo da unidade:
$ cat /etc/systemd/system/boottime.service
[Unit]
Description=Boottime Service
After=systend-user-sessions.service
[Service]
Type=simple
ExecStart=/opt/bin/boottime.bash
TLDR; analisando o tempo de análise do systemd
O sed
usado acima funciona da seguinte maneira:
sed 's/Startup finished in //;s/ +.*(initrd)//;s/ =.*$//')"
-
s/Startup finished in //
- remove tudo da esquerda até a palavrain
-
s/ +.*(initrd)//
- remove tudo a partir de+
até(initrd)
-
s/ =.*$//
- remove tudo no final da string, começando com=
até o final da linha$