Skip to content

Commit 0077471

Browse files
authored
Eclair v0.8.0 release (#2470)
1 parent 77b9aa0 commit 0077471

File tree

7 files changed

+514
-241
lines changed

7 files changed

+514
-241
lines changed

docs/Monitoring.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ kamon {
3333
}
3434
```
3535

36-
3736
When starting eclair, you should enable the Kanela agent:
3837

3938
```sh
@@ -72,9 +71,10 @@ kamon {
7271
}
7372
```
7473

75-
You should then configure your Prometheus process to scrape metrics from the exposed http server.
74+
You should then configure your Prometheus process to scrape metrics from the exposed http server.
75+
7676
* Download Prometheus [here](https://prometheus.io/download/).
77-
* Add the following configuration to the `prometheus.yml` file (see the [Prometheus documentation](https://prometheus.io/docs/prometheus/latest/configuration/configuration/) for more details)
77+
* Add the following configuration to the `prometheus.yml` file (see the [Prometheus documentation](https://prometheus.io/docs/prometheus/latest/configuration/configuration/) for more details).
7878

7979
```prometheus.yml
8080
global:
@@ -86,11 +86,11 @@ scrape_configs:
8686
- targets: ['<url of the eclair http embedded server>']
8787
```
8888

89-
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.
89+
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.
90+
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.
9091

9192
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)
9293

93-
9494
## Example metrics
9595

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

docs/release-notes/eclair-v0.8.0.md

+505
Large diffs are not rendered by default.

docs/release-notes/eclair-vnext.md

-231
This file was deleted.

eclair-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>fr.acinq.eclair</groupId>
2323
<artifactId>eclair_2.13</artifactId>
24-
<version>0.7.1-SNAPSHOT</version>
24+
<version>0.8.0</version>
2525
</parent>
2626

2727
<artifactId>eclair-core_2.13</artifactId>

eclair-front/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>fr.acinq.eclair</groupId>
2323
<artifactId>eclair_2.13</artifactId>
24-
<version>0.7.1-SNAPSHOT</version>
24+
<version>0.8.0</version>
2525
</parent>
2626

2727
<artifactId>eclair-front_2.13</artifactId>

eclair-node/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>fr.acinq.eclair</groupId>
2323
<artifactId>eclair_2.13</artifactId>
24-
<version>0.7.1-SNAPSHOT</version>
24+
<version>0.8.0</version>
2525
</parent>
2626

2727
<artifactId>eclair-node_2.13</artifactId>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<groupId>fr.acinq.eclair</groupId>
2222
<artifactId>eclair_2.13</artifactId>
23-
<version>0.7.1-SNAPSHOT</version>
23+
<version>0.8.0</version>
2424
<packaging>pom</packaging>
2525

2626
<modules>

0 commit comments

Comments
 (0)