-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
allowing a few extra characters as timeseries names? #267
Comments
ping @pauldix I now have a functioning prototype with graphite-ng; and I'm a little blocked. the ability to use these characters would mean i can implement metrics 2.0 on top of influxdb (and graphite-ng) which would be really neat. I believe last time we spoke the conclusion was most of them could easily implemented as long as I escape them in my queries, which would be a reasonable compromise. |
hey @Dieterbe I don't think spaces will be allowed. otherwise it will make the parser more complicated for no reason. can you change the space with another character (say comma) ? |
yeah i think i can replace all spaces with commas |
I think would be useful to use other characters in the series name. In my case, I would like to name my series as a URI, .e.g. name => "http://mysite.org/login" Then I would store two columns to register click and view events on this series (uri). Another possibility would be to allow to associate metadata to the series itself. Currently, we can only give a name to the series. What about associate an json object to the series? In this way, we could give a human readable name to the series, or add any other useful information to it. |
so can we add support for series names containing equals and forward slash? this would help me with https://github.com/vimeo/graphite-influxdb (this sounds unrelated, but due to various circumstances that's how it is for now) then comma would help with my metrics 2.0 & graphite-ng work |
I think we can do this, but forward slash is tricky. I don't think we'll be On Wed, Apr 9, 2014 at 9:00 AM, Dieter Plaetinck
|
yep, fair enough for me, and also seems fine for @samuraraujo 's case |
Can you add colon to the list?
returns
|
#463 takes care of this. You can now use any character you want in a series name. If you happen to use a character other than select * from "some series ; 23 @#)" where time > now() - 1h |
Well, you'l be able to do that once we release 0.5.10, which should be later today. |
awesome, thanks guys! |
Hi,
I'm currently working on integrating https://github.com/graphite-ng/graphite-ng with influxdb (in fact influxdb will become the main datastore), but that means I need support for "metrics 2.0" (link) basically this means timeseries identifiers like:
note that this identifier contains:
would it be possible to allow equals, forward slash and spaces?
The text was updated successfully, but these errors were encountered: