Skip to content
Draft
Show file tree
Hide file tree
Changes from all 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
5 changes: 5 additions & 0 deletions .changeset/olive-donkeys-follow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@chainlink/node-platform": major
---

change NodeBuildInfo to NodeInfo, include health info
4 changes: 2 additions & 2 deletions node-platform/chip-schemas.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"path": "common/v1/chain_plugin_config.proto"
},
{
"entity": "common.v1.NodeBuildInfo",
"path": "common/v1/node_build_info.proto"
"entity": "common.v1.NodeInfo",
"path": "common/v1/node_info.proto"
},
{
"entity": "common.v1.NodeJobInfo",
Expand Down
161 changes: 0 additions & 161 deletions node-platform/common/v1/node_build_info.pb.go

This file was deleted.

187 changes: 187 additions & 0 deletions node-platform/common/v1/node_info.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@ package common.v1;

option go_package = "github.com/smartcontractkit/chainlink-protos/node-platform/common/v1";

message NodeBuildInfo {
message NodeInfo {
// key info
string csa_public_key = 1;
// build info
string commit_sha = 2;
string version_tag = 3;
string version = 4;
string docker_tag = 5;
// health metrics
bool healthy = 6;
map<string, string> health_errors = 7;
}
5 changes: 5 additions & 0 deletions node-platform/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name": "@chainlink/node-platform",
"version": "0.1.0",
"private": true
}
1 change: 1 addition & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ packages:
- 'storage-service'
- 'op-catalog'
- 'rane'
- 'node-platform'
- 'chainlink-ccv/verifier'
- 'chainlink-ccv/committee-verifier'
- 'chainlink-ccv/message-discovery'
Expand Down
Loading