Skip to content

Commit

Permalink
Eclair v0.8.0 release (#2470)
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bast committed Dec 1, 2022
1 parent 77b9aa0 commit 0077471
Show file tree
Hide file tree
Showing 7 changed files with 514 additions and 241 deletions.
11 changes: 5 additions & 6 deletions docs/Monitoring.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ kamon {
}
```


When starting eclair, you should enable the Kanela agent:

```sh
Expand Down Expand Up @@ -72,9 +71,10 @@ kamon {
}
```

You should then configure your Prometheus process to scrape metrics from the exposed http server.
You should then configure your Prometheus process to scrape metrics from the exposed http server.

* Download Prometheus [here](https://prometheus.io/download/).
* Add the following configuration to the `prometheus.yml` file (see the [Prometheus documentation](https://prometheus.io/docs/prometheus/latest/configuration/configuration/) for more details)
* Add the following configuration to the `prometheus.yml` file (see the [Prometheus documentation](https://prometheus.io/docs/prometheus/latest/configuration/configuration/) for more details).

```prometheus.yml
global:
Expand All @@ -86,11 +86,11 @@ scrape_configs:
- targets: ['<url of the eclair http embedded server>']
```

Eclair provides many [Grafana](https://grafana.com/) dashboards to help you monitor your lightning node, which you can find in the `monitoring` folder of this repository. Follow the [Grafana documentation](https://grafana.com/docs/grafana/latest/dashboards/export-import/#import-dashboard) to import these dashboards and create new ones if necessary.
Eclair provides [Grafana](https://grafana.com/) dashboards to help you monitor your lightning node, which you can find in the `monitoring` folder of this repository.
Follow the [Grafana documentation](https://grafana.com/docs/grafana/latest/dashboards/export-import/#import-dashboard) to import these dashboards and create new ones if necessary.

Note: do not forget to add `Prometheus` as a data source in grafana (see [grafana documentation](https://prometheus.io/docs/visualization/grafana/#creating-a-prometheus-data-source) for more details)


## Example metrics

Apart from akka and system metrics, eclair generates a lot of lightning metrics. The following
Expand All @@ -101,4 +101,3 @@ metrics are just a small sample of all the metrics we provide:
* Number of connected peers
* Bitcoin wallet balance
* Various metrics about the public graph (nodes, channels, updates, etc)

505 changes: 505 additions & 0 deletions docs/release-notes/eclair-v0.8.0.md

Large diffs are not rendered by default.

231 changes: 0 additions & 231 deletions docs/release-notes/eclair-vnext.md

This file was deleted.

2 changes: 1 addition & 1 deletion eclair-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>fr.acinq.eclair</groupId>
<artifactId>eclair_2.13</artifactId>
<version>0.7.1-SNAPSHOT</version>
<version>0.8.0</version>
</parent>

<artifactId>eclair-core_2.13</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion eclair-front/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>fr.acinq.eclair</groupId>
<artifactId>eclair_2.13</artifactId>
<version>0.7.1-SNAPSHOT</version>
<version>0.8.0</version>
</parent>

<artifactId>eclair-front_2.13</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion eclair-node/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>fr.acinq.eclair</groupId>
<artifactId>eclair_2.13</artifactId>
<version>0.7.1-SNAPSHOT</version>
<version>0.8.0</version>
</parent>

<artifactId>eclair-node_2.13</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<groupId>fr.acinq.eclair</groupId>
<artifactId>eclair_2.13</artifactId>
<version>0.7.1-SNAPSHOT</version>
<version>0.8.0</version>
<packaging>pom</packaging>

<modules>
Expand Down

0 comments on commit 0077471

Please sign in to comment.