systemdタイマー - タイマーの実行履歴を取得する方法

systemdタイマー - タイマーの実行履歴を取得する方法
systemctl status mytimer.timer

いつアクティブになり、次のトリガーがいつ実行されるかを教えてください。過去のタイマー実行時間のリストを取得するには?

ベストアンサー1

タイマーをリストし、ログ/ログ単位の履歴を表示します。

systemctl list-timers
# replace motd-news with mytimer
journalctl -u motd-news.timer

出力:

-- Logs begin at Fri 2018-11-02 13:17:39 CDT, end at Sat 2018-11-03 11:20:59 CDT. --
Nov 02 13:17:52 pop-os systemd[1]: Started Message of the Day.
Nov 02 18:45:46 pop-os systemd[1]: Stopped Message of the Day.
-- Reboot --
Nov 02 18:46:47 pop-os systemd[1]: Started Message of the Day.
-- Reboot --
Nov 03 07:57:27 pop-os systemd[1]: Started Message of the Day.

他の便利なフラグ:

  • --since開始時刻から現在時刻まで
  • --until時間範囲を取得するためにシンセと共に使用
  • --reverse最新順に表示
  • --grepメッセージのパターンをgrepで検索

時間を得るために興味のある他のフラグはフラグf--outputだけでなく、このフラグも使用します。--output-field

-o, --output= 表示されるジャーナル項目の形式を制御します。次のいずれかのオプションを使用します。

   short
       is the default and generates an output that is mostly identical to the formatting of classic syslog files, showing one line
       per journal entry.

   short-full
       is very similar, but shows timestamps in the format the --since= and --until= options accept. Unlike the timestamp information shown in short output mode this mode
       includes weekday, year and timezone information in the output, and is locale-independent.

   short-iso
       is very similar, but shows ISO 8601 wallclock timestamps.

   short-iso-precise
       as for short-iso but includes full microsecond precision.

   short-precise
       is very similar, but shows classic syslog timestamps with full microsecond precision.

   short-monotonic
       is very similar, but shows monotonic timestamps instead of wallclock timestamps.

   short-unix
       is very similar, but shows seconds passed since January 1st 1970 UTC instead of wallclock timestamps ("UNIX time"). The time is
       shown with microsecond accuracy.

   verbose
       shows the full-structured entry items with all fields.

   export
       serializes the journal into a binary (but mostly text-based) stream suitable for backups and network transfer (see
       Journal Export Format[1] for more information). To
       import the binary stream back into native journald format use systemd-journal-remote(8).

   json
       formats entries as JSON data structures, one per line (see Journal JSON Format[2] for more information).

   json-pretty
       formats entries as JSON data structures, but formats them in multiple lines in order to make them more readable by humans.

   json-sse
       formats entries as JSON data structures, but wraps them in a format suitable for Server-Sent Events[3].


  cat
       generates a very terse output, only showing the actual message of each journal entry with no metadata, not even a timestamp.

--出力フィールド=

       A comma separated list of the fields which should be included in the output. This only has an effect for the output modes which
       would normally show all fields (verbose,
       export, json, json-pretty, and json-sse). The "__CURSOR", "__REALTIME_TIMESTAMP", "__MONOTONIC_TIMESTAMP", and "_BOOT_ID" fields
       are always printed.

おすすめ記事