nsc bazel invocation list
List recent Bazel invocations.
bazel invocation list shows the Bazel invocations that Namespace has recorded through its remote cache and remote execution service, most recent first. It's useful for finding an invocation ID to investigate further, for example with nsc bazel invocation report.
By default the command returns your most recent invocations regardless of age. Use --since to constrain the list to a recent time window, and --max_entries to control how many rows come back.
Usage
nsc bazel invocation list [--max_entries <count>] [--output <plain|json>] [--since <duration>]Example
$ nsc bazel invocation list --since 24hOptions
--max_entries <int32>
Maximum number of invocations to return (up to 100). Defaults to 50.
--output, -o <format>
Output format. One of plain or json. Defaults to plain.
--since <duration>
Only list invocations started within this duration. Defaults to 0s, which does not constrain the list.