runai inference standard logs
view logs of an inference workload
runai inference standard logs [WORKLOAD_NAME] [flags]Examples
# Get logs for a workload
runai inference logs <workload-name>
# Get logs for a specific pod in a workload
runai inference logs <workload-name> --pod=<pod-name>
# Get logs for a specific container in a workload
runai inference logs <workload-name> --container=<container-name>
# Get the last 100 lines of logs
runai inference logs <workload-name> --tail=100
# Get logs with timestamps
runai inference logs <workload-name> --timestamps
# Follow the logs
runai inference logs <workload-name> --follow
# Get logs for the previous instance of the workload
runai inference logs <workload-name> --previous
# Limit the logs to 1024 bytes
runai inference logs <workload-name> --limit-bytes=1024
# Get logs since the last 5 minutes
runai inference logs <workload-name> --since=300s
# Get logs since a specific timestamp
runai inference logs <workload-name> --since-time=2023-05-30T10:00:00Z
# Wait up to 30 seconds for a workload to be ready for logs
runai inference logs <workload-name> --wait-timeout=30sOptions
Options inherited from parent commands
SEE ALSO
runai inference standard - Runs a single inference process on one node. Suitable for smaller models or simpler inference tasks.
Last updated