-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into clickhouse-test-regression
- Loading branch information
Showing
14 changed files
with
305 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
.direnv | ||
# created when `just test <service>` is used | ||
/result | ||
# created when `just run <service>` is used | ||
/test/data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
--- | ||
order: 10 | ||
--- | ||
|
||
# Contributing | ||
|
||
{#devshell} | ||
## Development Shell | ||
|
||
A Nix dev shell is available, providing `nixpkgs-fmt` and `just`. To enter the dev shell, run: | ||
|
||
```sh | ||
nix develop .#dev | ||
``` | ||
|
||
An `.envrc` is also provided, so it is recommended to use `direnv` to automatically enter the dev shell when you `cd` into the project directory. See [this tutorial](https://nixos.asia/en/direnv). | ||
|
||
{#new-service} | ||
## Adding a new service | ||
|
||
The project repository is structure to make addition of new services easy. Here's how to add a new service: | ||
|
||
> [!info] | ||
> See <https://github.com/cachix/devenv/tree/main/src/modules/services> for inspiration. | ||
> | ||
> If you don't find a new service there, see <https://github.com/NixOS/nixpkgs/tree/master/nixos/modules/services>. | ||
- Create a new file `./nix/<service-name>.nix` file (see [./nix/redis.nix](https://github.com/juspay/services-flake/blob/main/nix/redis.nix) for inspiration) | ||
- Add the service to the list in [./nix/default.nix](https://github.com/juspay/services-flake/blob/main/nix/default.nix). | ||
- Create a new test file `./nix/<service-name>_test.nix` (see [./nix/redis_test.nix](https://github.com/juspay/services-flake/blob/main/nix/redis_test.nix)). | ||
- Add the test to [./test/flake.nix](https://github.com/juspay/services-flake/blob/main/test/flake.nix). | ||
|
||
{#run-service} | ||
### Run the service | ||
|
||
```sh | ||
just run <service-name> | ||
``` | ||
|
||
{#run-tests} | ||
### Run the tests for the service | ||
|
||
The previous command will run the services but not the tests. To run the tests, use: | ||
|
||
```sh | ||
just test <service-name> | ||
``` | ||
|
||
or test all services: | ||
|
||
```sh | ||
just test-all | ||
``` | ||
|
||
{#service-doc} | ||
### Add documentation for the new service | ||
|
||
It is important to add documentation along with any new services you are contributing. Create a new file `./doc/<service-name>.md` (see [[clickhouse]] for example) and add the service to the list in [[services]]. | ||
|
||
> [!note] | ||
> It is recommended to add documentation for non-trivial tasks. For example, grafana documentation mentions [how to change the default database backend](https://community.flake.parts/services-flake/grafana#change-database). | ||
|
||
|
||
{#docs} | ||
## Documentation | ||
|
||
For contributing to docs, see <https://github.com/flake-parts/community.flake.parts#guidelines-for-writing-docs> | ||
|
||
We use [emanote](https://emanote.srid.ca/) to render our documentation. The source files are in the `doc` directory. To run the docs, use: | ||
|
||
```sh | ||
just doc # Or, `cd doc && nix run` | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Grafana | ||
|
||
[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 | ||
|
||
```nix | ||
# In `perSystem.process-compose.<name>` | ||
{ | ||
services.grafana."gf1".enable = true; | ||
} | ||
``` | ||
|
||
{#tips} | ||
## Tips & Tricks | ||
|
||
{#change-database} | ||
### Changing Grafana database | ||
|
||
By default, Grafana stores data in the `sqlite3` [database](https://grafana.com/docs/grafana/latest/setup-grafana/configure-grafana/#database). It also supports `mysql` and `postgres`. | ||
|
||
To change the database to `postgres`, we can use the following config: | ||
|
||
```nix | ||
{ | ||
services.postgres.pg1 = { | ||
enable = true; | ||
listen_addresses = "127.0.0.1"; | ||
initialScript.after = "CREATE USER root SUPERUSER;"; | ||
}; | ||
services.grafana.gf1 = { | ||
enable = true; | ||
extraConf.database = with config.services.postgres.pg1; { | ||
type = "postgres"; | ||
host = "${listen_addresses}:${builtins.toString port}"; | ||
name = "postgres"; # database name | ||
}; | ||
}; | ||
settings.processes."gf1".depends_on."pg1".condition = "process_healthy"; | ||
}; | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,5 +13,6 @@ in | |
./redis-cluster.nix | ||
./redis.nix | ||
./zookeeper.nix | ||
./grafana.nix | ||
]; | ||
} |
Oops, something went wrong.