🏷️ Tags¶
You can define custom groupings of pipes with tags. Consider the example below:


Although both pipes have different connectors and metrics, they share the tag baz
, so they can be selected together with --tags baz
.
This seems like a useful feature, especially if you have dozens of pipes! But how can we assign these tags?
✍️ Writing Tags¶
Like in the above example, you can define tags in the Pipe constructor:
1 2 3 4 5 6 |
|
Tags Live in Parameters¶
To edit your tags interactively, just define a list under the tags
key from edit pipes
:
1 |
|
1 2 3 4 5 6 7 8 9 10 |
|
Finally, you can also add tags to an existing pipe by setting .tags
:
1 2 3 4 |
|