Query and explore jobs on your Nomad clusters.
The output is raw JSON, to facilitate integration with command line tooling, such
as jq
.
```bash
$ nquery --pretty redis [ { "ID": "redis", "Name": "redis", "Namespace": "default", "ParameterizedJob": null, # ... "TaskGroups": [ { # ... "Tasks": [ { # ... "Meta": null, "Name": "redis", } ] } ] } ]
$ nquery --pretty --parameterized -f Meta.data-source etl [ { "ID": "etl-cluster-1" "Meta.data-source": "db-cluster-1", }, { "ID": "etl-cluster-2" "Meta.data-source": "db-cluster-2", } ] ```
bash
cargo install nquery