I currently use Grafana to view how all sorts of stuff changes over time. It gets the job done, but is far from ideal:

  • edititng the data queries is intended to only be done in the web ui (so I end up just copypasting stuff to/from pycharm to at least have a nice text editor)
  • can’t store config in a git repo (yes, I can dump & restore the config as a huge json, but AFAIK the json structure is considered an internal api, so it can change at any time making versioning useless)
  • all plot parameters other than the data query have to be configured via gui

I did try grafanalib some time ago and it didn’t feel right. It was quite behind in plot types (Grafana screamed at me “don’t use this plot type, use the new one instead”), and is using unofficial api (the json config again).

Any suggestions? It doesn’t even have to be a ready-to-use tool, a library/framework for making dashboards will also do.

Depending on what you’re comfortable with (and whether you want to integrate it with something else), maybe take a look at Altair? Especially nice is the declarative syntax of Vega-Altair.

@equidamoid@lemmy.world
creator
link
fedilink
English
2
edit-2
1Y

Something like that, where I just write a function that spits out a numpy array or something like that and it gets plotted, would be great, but there is one thing Grafana can do and vega-altair, plotly and even matplotlib (*): a UI that allows to select a time interval to view.

So I can freely pan/zoom in/out in time, and only the required part of the data will be loaded (with something like select ... where time between X and Y under the hood). So if I look at a single day, it will only load that day, and only if I dare to zoom out too much it will spend some time loading everything from the last year.

(*) yes, you can do interactive things with matplotlib, but you don’t really want to, unless you must…

nitrolife
link
fedilink
English
41Y

You can configure grafana without gui. That explain in https://grafana.com/docs/grafana/latest/administration/provisioning/

@equidamoid@lemmy.world
creator
link
fedilink
English
3
edit-2
1Y

To be precise, the page explains how to configure some things and how to upload the config. I also tried that.

The problem is in the dashboard jsons. They are not well documented (docs on specific plots are missing), and are a pain to edit (as any json). The grafanalib tool I mentioned tries to help with that by implementing a sort of DSL for dashboards, but it is not ideal. (edit: lost a word)

nitrolife
link
fedilink
English
11Y

You can create graph on the UI and then export to json. To be honest, it’s hard for me to imagine a situation where graphs need to be edited so often. After all, there are excellent template engines in Grafana itself. For quick look anyone can use Explore panel. Maybe I don’t have so much data…

@equidamoid@lemmy.world
creator
link
fedilink
English
21Y

create graph on the UI

that’s something I want to avoid

hard for me to imagine a situation where graphs need to be edited so often

the whole system is under development (trying new views, changing how the data is represented, etc), so I don’t need to imagine it, I have it right in front of me ;)

arjache
link
fedilink
21Y

It still has the limitations of JSON churn, but I find jsonnet to be a nice functional-style DSL in which to write grafana dashboards.

@scrchngwsl@feddit.uk
link
fedilink
English
21Y

Shiny is pretty good. You can do interactive sliders to filter date ranges in that, and you control what happens when you slide it in the code. It’s not as slick as grafana though.

One downside is it started off as an R package then got ported to python, so most resources are for R. Fine for me because I know R, but most people don’t.

Here’s the python link: https://shiny.rstudio.com/py/

@equidamoid@lemmy.world
creator
link
fedilink
English
11Y

This might be actually it (or at least one of the “competitor” projects they mention in the docs), thanks! Just need to figure out how to do a nice grid layout of the graphs.

I know R a liiiitle bit, so that may help too =)

I use grafanalib. I have a script that generates the dashboards depending on given parameters, then I store generated JSON as a k8s configmap that’s mounted into the directory that’s checked by grafana on startup. Might not be everyone’s cup of tea but it is good enough for me.

@equidamoid@lemmy.world
creator
link
fedilink
English
11Y

Did you ever notice that grafanalib is noticeable behind grafana itself? That’s something that turned me off it, but I wonder if it was a one-time situation because of some major change in grafana…

I think you’ve just used a deprecated widget. I didn’t notice any incompatibility, maybe there’s some for beta widgets but otherwise all features I needed were there.

Create a post

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don’t control.

Rules:

  1. Be civil: we’re here to support and learn from one another. Insults won’t be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it’s not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don’t duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

  • 1 user online
  • 279 users / day
  • 589 users / week
  • 1.34K users / month
  • 4.55K users / 6 months
  • 1 subscriber
  • 3.5K Posts
  • 70K Comments
  • Modlog