Skip to content
Open
Show file tree
Hide file tree
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.5.4
version=0.5.5
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
# Changelog

## [unreleased]((https://github.com/NodeFactoryIo/vedran/tree/HEAD))
[Full Changelog](https://github.com/NodeFactoryIo/vedran/compare/v0.5.4...HEAD)
[Full Changelog](https://github.com/NodeFactoryIo/vedran/compare/v0.5.5...HEAD)

### Added

### Fix

### Changed

## [v0.5.5]((https://github.com/NodeFactoryIo/vedran/tree/v0.5.5))
[Full Changelog](https://github.com/NodeFactoryIo/vedran/compare/v0.5.4...v0.5.5)

### Added

Expand Down
32 changes: 24 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ Send metrics for node. Auth token should be in header as `X-Auth-Header`. Body s
"peer_count": "int32",
"best_block_height": "int64",
"finalized_block_height": "int64",
"target_block_height": "int64",
"ready_transaction_count": "int32"
}
```
Expand All @@ -263,14 +264,29 @@ Returns statistics for all nodes (mapped on node payout address).

```json
{
"node_1_payout_address": {
"total_pings": "float64",
"total_requests": "float64"
},
"node_2_payout_address": {
"total_pings": "float64",
"total_requests": "float64"
},
"stats": {
"node_1_payout_address": {
"total_pings": "float64",
"total_requests": "float64"
},
"node_2_payout_address": {
"total_pings": "float64",
"total_requests": "float64"
}
}
}
```

---

`GET api/v1/stats/lb`

Returns statistics on reward distribution between load balancer and nodes.

```json
{
"lb_fee": "string",
"nodes_fee": "string"
}
```

Expand Down
Binary file modified assets/vedran-arch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
container_name: "vedran"

vedran-daemon:
image: nodefactory/vedran-daemon:v0.3.4
image: nodefactory/vedran-daemon:latest
depends_on:
- vedran
- polkadot
Expand Down