36 lines
882 B
Plaintext
36 lines
882 B
Plaintext
---
|
|
layout: docs
|
|
page_title: 'Commands: event sink list'
|
|
sidebar_title: sink list <sup>Beta</sup>
|
|
description: |
|
|
The sink list command is used to list registered event sinks.
|
|
---
|
|
|
|
# Command: event sink list
|
|
|
|
The `event sink list` command is used to list all registered event sinks.
|
|
|
|
## Usage
|
|
|
|
```plaintext
|
|
nomad event sink list
|
|
```
|
|
|
|
When ACLs are enabled, this command requires a token with the `operator:read`
|
|
capability.
|
|
|
|
## General Options
|
|
|
|
@include 'general_options.mdx'
|
|
|
|
## Example
|
|
|
|
List all registered event sinks.
|
|
|
|
```shell-session
|
|
$ nomad event sink list
|
|
ID Type Address Topics LatestIndex
|
|
deployments-webhook webhook http://127.0.0.1:8080/deployments Deployment[*] 0
|
|
job-webhook webhook http://127.0.0.1:8080/jobhook Eval[*],Job[redis nginx],Node[*] 0
|
|
```
|