github.com/pachyderm/pachyderm@v1.13.4/doc/docs/1.9.x/reference/pachctl/pachctl_logs.md (about) 1 ## pachctl logs 2 3 Return logs from a job. 4 5 ### Synopsis 6 7 Return logs from a job. 8 9 ``` 10 pachctl logs [--pipeline=<pipeline>|--job=<job>] [--datum=<datum>] [flags] 11 ``` 12 13 ### Examples 14 15 ``` 16 17 # Return logs emitted by recent jobs in the "filter" pipeline 18 $ pachctl logs --pipeline=filter 19 20 # Return logs emitted by the job aedfa12aedf 21 $ pachctl logs --job=aedfa12aedf 22 23 # Return logs emitted by the pipeline \"filter\" while processing /apple.txt and a file with the hash 123aef 24 $ pachctl logs --pipeline=filter --inputs=/apple.txt,123aef 25 ``` 26 27 ### Options 28 29 ``` 30 --datum string Filter for log lines for this datum (accepts datum ID) 31 -f, --follow Follow logs as more are created. 32 -h, --help help for logs 33 --inputs string Filter for log lines generated while processing these files (accepts PFS paths or file hashes) 34 --job string Filter for log lines from this job (accepts job ID) 35 --master Return log messages from the master process (pipeline must be set). 36 -p, --pipeline string Filter the log for lines from this pipeline (accepts pipeline name) 37 --raw Return log messages verbatim from server. 38 -t, --tail int Lines of recent logs to display. 39 ``` 40 41 ### Options inherited from parent commands 42 43 ``` 44 --no-color Turn off colors. 45 -v, --verbose Output verbose logs 46 ``` 47