Tips: Ansibleのtask name:に時刻を入れる
Ansibleのtask実行時刻をログに残す方法例
例1: task name:に時刻を入れる
tasks
- name: '{{ lookup(''pipe'', ''date "+%Y/%m/%d %H:%M:%S"'') }} debug: { msg: hello world! }'
debug:
msg: hello world!
output
TASK [2020/03/11 15:43:39 debug: { msg: hello world! }] ***************************
ok: [localhost] => {
"msg": "hello world!"
}
- 出力がコンパクトで済ませれられる
- ansible コントローラーにおける日時
- フォーマットは自由
- ansible-playbookコマンドの--start-at-taskオプションが実質使用できない
例2: ansible.cfgにてcallbackプラグインとしてprofile_tasksを指定する
ansible.cfg
[defaults]
callback_whitelist = profile_tasks
tasks
- name: 'debug: { msg: hello world! }'
debug:
msg: hello world!
output
...
TASK [debug: { msg: hello world! }] ***********************************************
Wednesday 11 March 2020 16:19:40 +0900 (0:00:00.054) 0:00:00.054 *******
ok: [localhost] => {
"msg": "hello world!"
}
...
Wednesday 11 March 2020 16:19:40 +0900 (0:00:00.033) 0:00:00.087 *******
===============================================================================
debug: { msg: hello world! } ----------------------------------------------- 0.03s
- 設定は容易
- フォーマットが弄れない為、sortなどの加工は困難
- 参照
例3 debugモジュールで出力
tasks
- debug:
msg: '{{ lookup(''pipe'', ''date "+%Y/%m/%d %H:%M:%S"'') }}'
output
TASK [debug] **********************************************************************
ok: [localhost] => {
"msg": "2020/03/11 16:33:36"
}
- オーソドックス
- ansible コントローラーにおける日時
- フォーマットは自由
- 出力がコンパクトでは無い
tasks
- name: '{{ lookup(''pipe'', ''date "+%Y/%m/%d %H:%M:%S"'') }} debug: { msg: hello world! }'
debug:
msg: hello world!
output
TASK [2020/03/11 15:43:39 debug: { msg: hello world! }] ***************************
ok: [localhost] => {
"msg": "hello world!"
}
ansible.cfg
[defaults]
callback_whitelist = profile_tasks
tasks
- name: 'debug: { msg: hello world! }'
debug:
msg: hello world!
output
...
TASK [debug: { msg: hello world! }] ***********************************************
Wednesday 11 March 2020 16:19:40 +0900 (0:00:00.054) 0:00:00.054 *******
ok: [localhost] => {
"msg": "hello world!"
}
...
Wednesday 11 March 2020 16:19:40 +0900 (0:00:00.033) 0:00:00.087 *******
===============================================================================
debug: { msg: hello world! } ----------------------------------------------- 0.03s
tasks
- debug:
msg: '{{ lookup(''pipe'', ''date "+%Y/%m/%d %H:%M:%S"'') }}'
output
TASK [debug] **********************************************************************
ok: [localhost] => {
"msg": "2020/03/11 16:33:36"
}
Author And Source
この問題について(Tips: Ansibleのtask name:に時刻を入れる), 我々は、より多くの情報をここで見つけました https://qiita.com/hiroyuki_onodera/items/bd2dd5d9b89f738db3b6著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .