AP log又多又雜,相信大部分人也是丟到ES比較方便查找,但有時也需要在server上直接查看,隨手記錄一下使用方式。
格式: nomad alloc logs [options] <allocation> <task>
$ nomad alloc logs 07152288 frontend
-stderr
只看error的部分nomad alloc logs -stderr 07152288 frontend
-f
持續輸出lognomad alloc logs -stderr -f 07152288 frontend
-tail -n 20
類似 $ tail -20f abc.log
設定offset 20 行nomad alloc logs -f -tail -n 20 07152288 frontend