graphite-project / graphite-web

A highly scalable real-time graphing system
http://graphite.readthedocs.org/
Apache License 2.0
5.87k stars 1.26k forks source link

Tags Docs: fix allowed characters #2821

Closed danielbeardsley closed 8 months ago

danielbeardsley commented 8 months ago

Space is definitely not allowed as the parser in carbon does this:

metric, value, timestamp = line.strip().split()

Thus a space in any part of the tags string or metric name would result in it being cut off and the remaining part would be parsed as part of the value.