Hi, my name is Torkel Ödegaard. Grafana project creator & lead. Here to answer any questions.
have you seen any implementations of internal tracing like APM being used with Grafana? I think lack of a good open source alternative to New Relic or Datadog APM kinda killed OSS monitoring for my company. The Jaeger integration is a good step in the right direction though, kudos!
Grafana 7.0
61–70 of 101 posts
Re: Grafana 7.0
#62It 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...
SELECT i::text as metric, l1.*
FROM
(SELECT
g1 AS i,
g1 * '1week'::interval AS interval,
'1 week'::interval AS span,
now() AS start
FROM generate_series(0,3) g1) g1
JOIN LATERAL (
SELECT
time + interval AS time,
value
FROM metrics
WHERE time > start - (span+interval) AND time Re: Grafana 7.0
#63Re: Grafana 7.0
#64Earlier quoted context omitted.
have you seen any implementations of internal tracing like APM being used with Grafana? I think lack of a good open source alternative to New Relic or Datadog APM kinda killed OSS monitoring for my company. The Jaeger integration is a good step in the right direction though, kudos!
What more would you like to see than what Jaeger provides?
Traditional APM products are internal traces
Re: Grafana 7.0
#65Earlier quoted context omitted.
Hi Torkel, First off, Grafana is amazing! So keep up the good work. Question: Currently alerts are fairly limited both in applicable panels and how they export/share relevant data to the chosen notification channel, as well as more advanced conditions. Is there any work going on with improving alerts?
Also to mention frequently asked feature: alerts using queries and templated variables [1][2]. Creating even simple generic dashboards with alerts is not possible, unless variables are hardcoded in hidden queries. [1] https://community.grafana.com/t/template-variables-are-not-s... [2] https://github.com/grafana/grafana/issues/6557
Re: Grafana 7.0
#66Hi, my name is Torkel Ödegaard. Grafana project creator & lead. Here to answer any questions.
Now if only you could persuade kibana to do the same :-)
Re: Grafana 7.0
#67Hi, my name is Torkel Ödegaard. Grafana project creator & lead. Here to answer any questions.
and maybe also add one to your home page. (make it link to the features)
when i see any release anouncement about a product i am unfamiliar with, the first question i have is what kind of product it is, so i can decide if i want to check it out
Re: Grafana 7.0
#68Hi, my name is Torkel Ödegaard. Grafana project creator & lead. Here to answer any questions.
I have a mongodb database with several collections. All collections share a set of fields: "createdAt", "channelId", "status", etc.
How easy would it be to dump all this data into Grafana, and then be able to slice and dice these collections by any combination of the shared fields.
Basically, I'm tired of writing mongo queries whenever I want to inspect my data. I want to point and click around a beautiful UI, with data visualizations and easy filtering/aggregation. Is this easy to do with Grafana?
Re: Grafana 7.0
#69Hi, my name is Torkel Ödegaard. Grafana project creator & lead. Here to answer any questions.
Zero experience with Grafana here. I have a mongodb database with several collections. All collections share a set of fields: "createdAt", "channelId", "status", etc. How easy would it be to dump all this data into Grafana, and then be able to slice and dice these collections by any combination of the shared fields. Basically, I'm tired of writing mongo queries whenever I want to inspect my data. I want to point and…
If you have mongodb enterprise you can use Mongo bi connector and connect it with any bi tool. I recommend metabase since it is open source and very good for slice and dice and reports.
The mongodb bi connector is a postgres with foreign data wrapper to mongodb. So even if you don't have a mongodb subscription, you may be able to pull this off using the OS version https://github.com/EnterpriseDB/mongo_fdw
Re: Grafana 7.0
#70Hi, my name is Torkel Ödegaard. Grafana project creator & lead. Here to answer any questions.