-
Notifications
You must be signed in to change notification settings - Fork 16
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
Improve README #12
Comments
There should be examples how to incorporate time as a filter ( |
We should have examples for all macros |
I just tested macros and they work, this is great. Example query: select $__timeGroup(created_at,'1w') as date, to_milliseconds(avg(merged_at - created_at)) / 3600000 as avg_ttm_hours
from hive.v2.unique_pulls
where $__timeFilter(created_at)
group by 1
order by 1 We might be able to reuse most of this as docs: https://grafana.com/docs/grafana/latest/datasources/postgres/ |
Also improve the getting started section. It should not assume users have built the plugin locally, instead use the
|
The README should be focused on users, not developers. For devs, we might add a
DEVELOPER.md
file.The text was updated successfully, but these errors were encountered: