--- title: LogCLI description: LogCLI, Grafana Loki's command-line interface weight: 20 aliases: - /docs/loki/latest/getting-started/logcli/ --- # LogCLI LogCLI is the command-line interface to Grafana Loki. It facilitates running [LogQL]({{< relref "../logql/_index.md" >}}) queries against a Loki instance. ## Installation ### Binary (Recommended) Download the `logcli` binary from the [Loki releases page](https://github.com/grafana/loki/releases). ### Build LogCLI from source Clone the Loki repository and build `logcli` from source: ```bash git clone https://github.com/grafana/loki.git cd loki make logcli ``` Optionally, move the binary into a directory that is part of your `$PATH`. ```bash cp cmd/logcli/logcli /usr/local/bin/logcli ``` ## Set up command completion You can set up tab-completion for `logcli` with one of the two options, depending on your shell: - For bash, add this to your `~/.bashrc` file: ``` eval "$(logcli --completion-script-bash)" ``` - For zsh, add this to your `~/.zshrc` file: ``` eval "$(logcli --completion-script-zsh)" ``` ## LogCLI usage ### Grafana Cloud example If you are running on Grafana Cloud, use: ```bash export LOKI_ADDR=https://logs-us-west1.grafana.net export LOKI_USERNAME= export LOKI_PASSWORD= ``` Otherwise you can point LogCLI to a local instance directly without needing a username and password: ```bash export LOKI_ADDR=http://localhost:3100 ``` > Note: If you are running Loki behind a proxy server and you have > authentication configured, you will also have to pass in LOKI_USERNAME > and LOKI_PASSWORD, LOKI_BEARER_TOKEN or LOKI_BEARER_TOKEN_FILE accordingly. ```bash $ logcli labels job https://logs-dev-ops-tools1.grafana.net/api/prom/label/job/values loki-ops/consul loki-ops/loki-gw ... $ logcli query '{job="loki-ops/consul"}' https://logs-dev-ops-tools1.grafana.net/api/prom/query?query=%7Bjob%3D%22loki-ops%2Fconsul%22%7D&limit=30&start=1529928228&end=1529931828&direction=backward®exp= Common labels: {job="loki-ops/consul", namespace="loki-ops"} 2018-06-25T12:52:09Z {instance="consul-8576459955-pl75w"} 2018/06/25 12:52:09 [INFO] raft: Snapshot to 475409 complete 2018-06-25T12:52:09Z {instance="consul-8576459955-pl75w"} 2018/06/25 12:52:09 [INFO] raft: Compacting logs from 456973 to 465169 ... $ logcli series -q --match='{namespace="loki",container_name="loki"}' {app="loki", container_name="loki", controller_revision_hash="loki-57c9df47f4", filename="/var/log/pods/loki_loki-0_8ed03ded-bacb-4b13-a6fe-53a445a15887/loki/0.log", instance="loki-0", job="loki/loki", name="loki", namespace="loki", release="loki", statefulset_kubernetes_io_pod_name="loki-0", stream="stderr"} ``` ### Batched queries LogCLI sends queries to Loki such that query results arrive in batches. The `--limit` option for a `logcli query` command caps the quantity of log lines for a single query. When not set, `--limit` defaults to 30. The limit protects the user from overwhelming the system for cases in which the specified query would have returned a large quantity of log lines. The limit also protects the user from unexpectedly large responses. The quantity of log line results that arrive in each batch is set by the `--batch` option in a `logcli query` command. When not set, `--batch` defaults to 1000. Setting a `--limit` value larger than the `--batch` value causes the requests from LogCLI to Loki to be batched. Loki has a server-side limit that defaults to 5000 for the maximum quantity of lines returned for a single query. The batching of requests allows you to query for a results set that is larger than the server-side limit, as long as the `--batch` value is less than the server limit. Query metadata is output to `stderr` for each batch. Set the `--quiet` option on the `logcli query` command line to suppress the output of the query metadata. ### Configuration Configuration values are considered in the following order (lowest to highest): - Environment variables - Command-line options ### LogCLI command reference The output of `logcli help`: ```nohighlight usage: logcli [] [ ...] A command-line for loki. Flags: --help Show context-sensitive help (also try --help-long and --help-man). --version Show application version. -q, --quiet Suppress query metadata --stats Show query statistics -o, --output=default Specify output mode [default, raw, jsonl]. raw suppresses log labels and timestamp. -z, --timezone=Local Specify the timezone to use when formatting output timestamps [Local, UTC] --cpuprofile="" Specify the location for writing a CPU profile. --memprofile="" Specify the location for writing a memory profile. --stdin Take input logs from stdin --addr="http://localhost:3100" Server address. Can also be set using LOKI_ADDR env var. --username="" Username for HTTP basic auth. Can also be set using LOKI_USERNAME env var. --password="" Password for HTTP basic auth. Can also be set using LOKI_PASSWORD env var. --ca-cert="" Path to the server Certificate Authority. Can also be set using LOKI_CA_CERT_PATH env var. --tls-skip-verify Server certificate TLS skip verify. --cert="" Path to the client certificate. Can also be set using LOKI_CLIENT_CERT_PATH env var. --key="" Path to the client certificate key. Can also be set using LOKI_CLIENT_KEY_PATH env var. --org-id="" adds X-Scope-OrgID to API requests for representing tenant ID. Useful for requesting tenant data when bypassing an auth gateway. Commands: help [...] Show help. query [] Run a LogQL query. The "query" command is useful for querying for logs. Logs can be returned in a few output modes: raw: log line default: log timestamp + log labels + log line jsonl: JSON response from Loki API of log line The output of the log can be specified with the "-o" flag, for example, "-o raw" for the raw output format. The "query" command will output extra information about the query and its results, such as the API URL, set of common labels, and set of excluded labels. This extra information can be suppressed with the --quiet flag. By default we look over the last hour of data; use --since to modify or provide specific start and end times with --from and --to respectively. Notice that when using --from and --to then ensure to use RFC3339Nano time format, but without timezone at the end. The local timezone will be added automatically or if using --timezone flag. Example: logcli query --timezone=UTC --from="2021-01-19T10:00:00Z" --to="2021-01-19T20:00:00Z" --output=jsonl 'my-query' The output is limited to 30 entries by default; use --limit to increase. While "query" does support metrics queries, its output contains multiple data points between the start and end query time. This output is used to build graphs, similar to what is seen in the Grafana Explore graph view. If you are querying metrics and just want the most recent data point (like what is seen in the Grafana Explore table view), then you should use the "instant-query" command instead. instant-query [] Run an instant LogQL query. The "instant-query" command is useful for evaluating a metric query for a single point in time. This is equivalent to the Grafana Explore table view; if you want a metrics query that is used to build a Grafana graph, you should use the "query" command instead. This command does not produce useful output when querying for log lines; you should always use the "query" command when you are running log queries. For more information about log queries and metric queries, refer to the LogQL documentation: https://grafana.com/docs/loki/latest/logql/ labels [] [