You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Install or unzip the [release for your operating system](https://github.com/datalust/seqcli/releases). Or, if you have `dotnet` installed, `seqcli` can be installed as a global tool using:
9
+
The Seq installer for Windows includes `seqcli`. Otherwise, download the [release for your operating system](https://github.com/datalust/seqcli/releases). Or, if you have `dotnet` installed, `seqcli` can be installed as a global tool using:
10
10
11
11
```
12
12
dotnet tool install --global seqcli
@@ -27,6 +27,8 @@ The API key will be stored in your `SeqCli.json` configuration file; on Windows,
27
27
docker run --rm datalust/seqcli:latest <command> [<args>]
28
28
```
29
29
30
+
To connect to Seq in a docker container on the local machine use the machine's IP address (not localhost) or specify [docker host networking](https://docs.docker.com/network/host/) with `--net host`.
31
+
30
32
Use Docker networks and volumes to make local files and other containers accessible to `seqcli` within its container.
|`--filter=VALUE`| A filter to apply to incoming events |
153
155
|`--minimum-level=VALUE`| The minimum event level/severity to accept; the default is to accept all events |
154
156
|`--use-server-timestamps`| Discard client-supplied timestamps and use server clock values |
155
-
|`--permissions=VALUE`|The permissions to delegate to the API key; the default is`Ingest`|
157
+
|`--permissions=VALUE`|A comma-separated list of permissions to delegate to the API key; valid permissions are`Ingest` (default), `Read`, `Setup`, and `Write`|
156
158
|`--connect-username=VALUE`| A username to connect with, useful primarily when setting up the first API key |
157
159
|`--connect-password=VALUE`| When `connect-username` is specified, a corresponding password |
158
160
|`--connect-password-stdin`| When `connect-username` is specified, read the corresponding password from `STDIN`|
@@ -459,7 +461,7 @@ Begin demotion of the current leader node.
459
461
Example:
460
462
461
463
```
462
-
seqcli node demote -v --wait
464
+
seqcli node demote --verbose --wait
463
465
```
464
466
465
467
| Option | Description |
@@ -740,6 +742,7 @@ seqcli signal create -t 'Exceptions' -f "@Exception is not null"
740
742
|`-t`, `--title=VALUE`| A title for the signal |
741
743
|`--description=VALUE`| A description for the signal |
742
744
|`-f`, `--filter=VALUE`| Filter to associate with the signal |
745
+
|`-c`, `--column=VALUE`| Column to associate with the signal; this argument can be used multiple times |
743
746
|`--group=VALUE`| An explicit group name to associate with the signal; the default is to infer the group from the filter |
744
747
|`--no-group`| Specify that no group should be inferred; the default is to infer the group from the filter |
745
748
|`--protected`| Specify that the signal is editable only by administrators |
0 commit comments