Skip to content

Commit

Permalink
Merge pull request graphite-project#2821 from danielbeardsley/patch-1
Browse files Browse the repository at this point in the history
Tags Docs: fix allowed characters
  • Loading branch information
deniszh authored Oct 26, 2023
2 parents e058266 + 58f7e9c commit 60517f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tags.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Carbon will automatically decode the tags, normalize the tag order, and register

.. _querying-tagged-series:

Tag names must have a length >= 1 and may contain any ascii characters except ``;!^=``. Tag values must also have a length >= 1, they may contain any ascii characters except ``;`` and the first character must not be ``~``. UTF-8 characters may work for names and values, but they are not well tested and it is not recommended to use non-ascii characters in metric names or tags. Metric names get indexed under the special tag `name`, if a metric name starts with one or multiple `~` they simply get removed from the derived tag value because the `~` character is not allowed to be in the first position of the tag value. If a metric name consists of no other characters than `~`, then it is considered invalid and may get dropped.
Tag names must have a length >= 1 and may contain any ascii characters except ``;!^=`` and space. Tag values must also have a length >= 1, they may contain any ascii characters except ``;`` and space and the first character must not be ``~``. UTF-8 characters may work for names and values, but they are not well tested and it is not recommended to use non-ascii characters in metric names or tags. Metric names get indexed under the special tag `name`, if a metric name starts with one or multiple `~` they simply get removed from the derived tag value because the `~` character is not allowed to be in the first position of the tag value. If a metric name consists of no other characters than `~`, then it is considered invalid and may get dropped.

Querying
--------
Expand Down

0 comments on commit 60517f8

Please sign in to comment.