-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
nsqadmin: dynamic graphite timeframe #649
Conversation
Makes sense 👍 |
@@ -10,9 +10,9 @@ | |||
"handlebars": "1.3.0", | |||
"hbsfy": "1.3.2", | |||
"browserify": "4.1.9", | |||
"gulp-sass": "0.7.1", | |||
"gulp-sass": "2.0.4", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess I had updated node
at some point and this old version of gulp-sass
wasn't working.
450cdd0
to
e45a6c0
Compare
updated @jehiah |
(I haven't actually tested this 😁) |
e45a6c0
to
6039f2e
Compare
Pushed another tweak to prefix the timeframes for the graphite URLs with |
@mreiferson I had to |
3c9f6b8
to
ccc8e5f
Compare
updated/squashed |
nsqadmin: dynamic graphite timeframe
prior to #323 nsqadmin controlled the graphite integration timeframe via
?t={{timeframe}}
and persisted it via cookie. Now it's persisted via browser local storage.The benefit of the previous approach is that you were not limited to the built in timeframe selection options and could pick any supported graphite time range (ie:
?t=3weeks
). This also meant you could hard link other people to view the dashboard in a specific timeframe which is helpful in troubleshooting in a group setting.I think we should add the ability to select a custom timeframe (ie: a new 'other' option in the dropdown that presents a free form selection) and possibly add back the ability to pick up the timeframe option when present as a query parameter
cc: @mreiferson