Skip to content

Commit

Permalink
chore: run grafana test only on Linux; document that it is broken on …
Browse files Browse the repository at this point in the history
…Darwin
  • Loading branch information
shivaraj-bh committed Jun 3, 2024
1 parent 5442d47 commit 66554fa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions doc/grafana.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Grafana

>[!warning] ❌ Broken on Darwin
> See here: https://github.com/juspay/services-flake/pull/204#issuecomment-2145497680
[Grafana open source](https://grafana.com/docs/grafana/latest/) is open source visualization and analytics software. It allows you to query, visualize, alert on, and explore your metrics, logs, and traces no matter where they are stored. It provides you with tools to turn your time-series database (TSDB) data into insightful graphs and visualizations.

## Getting Started
Expand Down
7 changes: 4 additions & 3 deletions test/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
];
};
in
builtins.listToAttrs (builtins.map mkPackageFor [
builtins.listToAttrs (builtins.map mkPackageFor ([
"${inputs.services-flake}/nix/apache-kafka_test.nix"
"${inputs.services-flake}/nix/clickhouse/clickhouse_test.nix"
"${inputs.services-flake}/nix/elasticsearch_test.nix"
Expand All @@ -42,13 +42,14 @@
"${inputs.services-flake}/nix/redis_test.nix"
"${inputs.services-flake}/nix/redis-cluster_test.nix"
"${inputs.services-flake}/nix/zookeeper_test.nix"
"${inputs.services-flake}/nix/grafana_test.nix"
"${inputs.services-flake}/nix/prometheus_test.nix"
"${inputs.services-flake}/nix/pgadmin_test.nix"
"${inputs.services-flake}/nix/cassandra_test.nix"
"${inputs.services-flake}/nix/tempo_test.nix"
"${inputs.services-flake}/nix/weaviate_test.nix"
]);
] ++ lib.optionals pkgs.stdenv.isLinux [
"${inputs.services-flake}/nix/grafana_test.nix"
]));
};
};
}

0 comments on commit 66554fa

Please sign in to comment.