website/content/en/highlights/2021-04-21-vector-tap.md
{{< grpc-migration-warning >}}
Vector 0.13 introduces a new vector tap subcommand that allows for
tapping into the events flowing through Vector. This can be used to "live tail"
events while troubleshooting incidents events or simply to debug your Vector
config, replacing the current common approach of sending the events to
a console sink.
To use vector tap you must first enable Vector's GraphQL API.
Then, you can use vector tap <component id> to sample the events flowing out
of this component.
For example, given the configuration:
api:
enabled: true
sources:
in:
type: "generator"
format: "shuffle"
interval: 1.0
lines: ["Hello World"]
sequence: true
sinks:
out:
type: "blackhole"
inputs: ["in"]
If you were to run vector and then, in another terminal, run vector tap in,
you would see something like:
{"message":"13 Hello World","timestamp":"2021-04-20T19:40:32.359390Z"}
{"message":"14 Hello World","timestamp":"2021-04-20T19:40:33.355298Z"}
{"message":"15 Hello World","timestamp":"2021-04-20T19:40:34.353215Z"}
{"message":"16 Hello World","timestamp":"2021-04-20T19:40:35.353493Z"}
{"message":"17 Hello World","timestamp":"2021-04-20T19:40:36.352089Z"}
{"message":"18 Hello World","timestamp":"2021-04-20T19:40:37.347406Z"}
With the events formatted as JSON.
Like vector top, this command is made possible by vector through its
GraphQL API. You can interact directly with the API if you want to take
advantage of tapping events programmatically.
We intend to make the vector tap command even more powerful by:
Have an idea of how to make vector tap even more useful? Let us
know.