域名服务增加访问日志

This commit is contained in:
刘祥超
2021-06-02 11:53:15 +08:00
parent e4d958fd2c
commit 0be838d6f1
14 changed files with 1961 additions and 487 deletions

View File

@@ -49,7 +49,7 @@ service NSNodeService {
rpc updateNSNodeStatus (UpdateNSNodeStatusRequest) returns (RPCSuccess);
// 获取当前节点信息
rpc findCurrentNSNode (FindCurrentNSNodeRequest) returns (FindCurrentNSNodeResponse);
rpc findCurrentNSNodeConfig (FindCurrentNSNodeConfigRequest) returns (FindCurrentNSNodeConfigResponse);
}
// 根据集群查找所有节点
@@ -160,10 +160,10 @@ message UpdateNSNodeStatusRequest {
}
// 获取当前节点信息
message FindCurrentNSNodeRequest {
message FindCurrentNSNodeConfigRequest {
}
message FindCurrentNSNodeResponse {
NSNode nsNode = 1;
message FindCurrentNSNodeConfigResponse {
bytes nsNodeJSON = 1;
}