如何将我的遥测服务器添加到 nearcore config.json?
How can I add my telemetry server to nearcore config.json?
我想从 nearcore
读取遥测数据,我知道该节点与 Prometheus 兼容。文件 config.json
包含指向 NEAR 区块浏览器的语音遥测:
"telemetry": {
"endpoints": [
"https://explorer.betanet.nearprotocol.com/api/nodes"
]
},
我可以将自己的遥测服务器添加到该阵列吗?我应该在防火墙上打开哪个端口?
您需要托管一个附近的资源管理器:https://github.com/near/near-explorer 并将其 url 用作遥测服务器。 Telemetry请求是来自neard的出站流量(请求是从neard到explorer),所以不需要为neard节点打开任何端口。
我想从 nearcore
读取遥测数据,我知道该节点与 Prometheus 兼容。文件 config.json
包含指向 NEAR 区块浏览器的语音遥测:
"telemetry": {
"endpoints": [
"https://explorer.betanet.nearprotocol.com/api/nodes"
]
},
我可以将自己的遥测服务器添加到该阵列吗?我应该在防火墙上打开哪个端口?
您需要托管一个附近的资源管理器:https://github.com/near/near-explorer 并将其 url 用作遥测服务器。 Telemetry请求是来自neard的出站流量(请求是从neard到explorer),所以不需要为neard节点打开任何端口。