-
Notifications
You must be signed in to change notification settings - Fork 25
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
Make it possible to check multiple routes in index #32
Comments
Just thought about that. What about showing multiple routes in one graph? Seems to be better to me, then having tabs? |
what about providing checkboxes to enable/disable the display multiple |
Jep. Good idea! 👍 |
any clear specs on that? as far as i could understand:
anything else? i could give it a try, just need to know the specs ;-) |
Config should accept two types for url String and Array.
&
|
👍 will give it a try later on this, however, will be a bit of a breaking change - filename-wise or data-structure-wise
which one would be preferred? |
Would prefer to stick with 👍 for:
|
ok, but now - how do we split the results across different urls? on the top-level, like {
"example.com" : {
"results" : { ... },
"gzipRequests" : { ... },
...
},
"example.com/foo" : {
"results" : { ... },
"gzipRequests" : { ... },
...
}
} or on the individual prop level, like {
"results" : {
"example.com" : { ... },
"example.com/foo" : { ... },
...
},
"gzipRequests" : {
"example.com" : { ... },
"example.com/foo" : { ... },
...
},
...
} can we sum it up @ the top of this issue please? just so we have a clear specs in one place, not split across 100 comments :-) |
Both fine for me. ;) |
👍 |
Follow up of #28 requested by @pgilad.
The text was updated successfully, but these errors were encountered: