Hi, my name is Torkel Ödegaard. Grafana project creator & lead. Here to answer any questions.
Grafana 7.0
51–60 of 101 posts
Re: Grafana 7.0
#52Company I am working at has moved from dozens of graphanas across multiple teams to Datadog and I miss it dearly.
Re: Grafana 7.0
#53Re: Grafana 7.0
#54Re: Grafana 7.0
#55It would be nice to have yearly, monthly, weekly and other recurring graph, I tried to hack it with sql window function, but it gives lot of problems. https://community.grafana.com/t/yearly-monthly-weekly-and-ot...
Re: Grafana 7.0
#56Re: Grafana 7.0
#57Hi, my name is Torkel Ödegaard. Grafana project creator & lead. Here to answer any questions.
Re: Grafana 7.0
#58Hi, my name is Torkel Ödegaard. Grafana project creator & lead. Here to answer any questions.
Hi, I used Grafana in my last company and absolutely loved it. How do I convince my current company to get the hell off Datadog?
Re: Grafana 7.0
#59Earlier quoted context omitted.
At work we have to compile everything from source because compliance, and Grafana is one of the harder ones to get right. There used to be good documentation for it a few versions back but I can't seem to find it lately. Is there any good documentation on how to get Grafana compiled from source?
I just built it from sources because of the same reason. What are the issues on your side?
Re: Grafana 7.0
#60It would be nice to have yearly, monthly, weekly and other recurring graph, I tried to hack it with sql window function, but it gives lot of problems. https://community.grafana.com/t/yearly-monthly-weekly-and-ot...
Have you tried something like this?
SELECT time, '2018' as metric, value FROM metrics
WHERE time >= '2018-01-01' AND time UNION ALL
SELECT time - '1 year'::interval, '2019' as metric, value FROM metrics
WHERE time >= '2019-01-01' AND time ORDER by time;
You will have a 2018 and a 2019 line if you plot this. (And you can of course make the time-periods dynamic.)
Note: One of our (TimescaleDB) engineers authored and contributed the PostgreSQL data source to Grafana. We happen to see quite a few Grafana dashboards built with SQL. If you'd like to debug in real-time then I'd suggest joining our Slack: https://slack.timescale.com/.