status-go/metrics/node
Jakub Sokołowski 714eb416d2 metrics: fix p2p_peers_count metrics labels
Because `p2p.Server.Name()` function started returning an abbreviated
name of the node this broke the parsing of the name in order to fill in
the labels for `p2p_peers_count` metric, resulting in metrics like this:
```sh
 > curl -sS localhost:9090/metrics | grep '^p2p_peers_count'
p2p_peers_count{platform="v0.79.0",type="Statusd",version="unknown"} 3
```
Caused by value returned from `Name()` to look like this:
```
Statusd/v0.79.0/linu...
```
By using `Fullname()` we are sure we are pasing all the segments.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
2021-08-24 11:07:39 +02:00
..
metrics.go metrics: fix p2p_peers_count metrics labels 2021-08-24 11:07:39 +02:00
metrics_test.go Ignore full node flag when in topic mode 2020-03-23 15:10:07 +01:00
subscribe.go Handle deadlock in peerpool 2021-02-02 07:58:17 +01:00