Adding and deleting tags
To add or delete a tag, you can use rewrite rules. To add a tag, use the following syntax:
rewrite <name_of_the_rule> {
set-tag("<tag-to-add>");
};
To delete a tag, use the following syntax:
rewrite <name_of_the_rule> {
clear-tag("<tag-to-delete>");
};
Templates (macros, template functions) can be used when specifying tags, for example, set-tag("dyn::$HOST");
.
Last modified July 2, 2023: Change highlight mode of code examples (2f8a959)