Commit Graph

4 Commits

Author SHA1 Message Date
Alex Pearwin
eb3bac5543
feat(grafana): add providers configuration (#211)
Addresses juspay/services-flake#210.

I've tested this by hand with configuration:

```nix
services.grafana."grafana" = {
  enable = true;
  providers = [
    {
      name = "Databases";
      type = "file";
      options = {
        path = ./dashboards;
        foldersFromFilesStructure = true;
      };
    }
  ];
};
```

I haven't looked into it, but it might be possible to extend the
existing Grafana test to check that a folder of dashboards is loaded.
2024-06-06 21:39:45 +05:30
Tim
c6b5977f65
feat: add tempo service (#192) 2024-05-19 17:06:45 +05:30
Shivaraj B H
04b5f77604
fix(grafana): add coreutils as runtimeInput for the startScript (#164)
`readlink` shipped by default in macOS doesn't support `-m` flag
2024-04-11 00:42:46 +05:30
Abhishek Singh
625f207034
add grafana service (#108) 2024-02-22 22:25:51 +05:30