方法列表
查询日志数量
admin
RPC
countNodeLogs (CountNodeLogsRequest) returns (RPCCountResponse)
HTTP
POST /NodeLogService/countNodeLogs
输入对象:CountNodeLogsRequest:
{ // 集群ID int64 nodeClusterId; // 节点ID int64 nodeId; string role; string dayFrom; string dayTo; // 关键词 string keyword; string level; // 服务ID(网站ID) int64 serverId; int64 originId; bool isUnread; string tag; int32 fixedState; // 是否获取所有服务相关的日志 bool allServers; }
输出对象:RPCCountResponse:
{ // 数量 int64 count; }
列出单页日志
admin
RPC
listNodeLogs (ListNodeLogsRequest) returns (ListNodeLogsResponse)
HTTP
POST /NodeLogService/listNodeLogs
输入对象:ListNodeLogsRequest:
{ // 集群ID int64 nodeClusterId; // 节点ID int64 nodeId; string role; // 读取位置 int64 offset; // 数量,通常不能小于0 int64 size; string dayFrom; string dayTo; // 关键词 string keyword; string level; // 服务ID(网站ID) int64 serverId; int32 fixedState; // 是否获取所有服务相关的日志 bool allServers; int64 originId; bool isUnread; string tag; }
输出对象:ListNodeLogsResponse:
设置日志为已修复
admin
RPC
fixNodeLogs (FixNodeLogsRequest) returns (RPCSuccess)
HTTP
POST /NodeLogService/fixNodeLogs
输入对象:FixNodeLogsRequest:
输出对象:RPCSuccess:
{ }
设置所有日志为已修复
admin
RPC
fixAllNodeLogs (FixAllNodeLogsRequest) returns (RPCSuccess)
HTTP
POST /NodeLogService/fixAllNodeLogs
输入对象:FixAllNodeLogsRequest:
{ }
输出对象:RPCSuccess:
{ }
计算未读的日志数量
admin
RPC
countAllUnreadNodeLogs (CountAllUnreadNodeLogsRequest) returns (RPCCountResponse)
HTTP
POST /NodeLogService/countAllUnreadNodeLogs
输入对象:CountAllUnreadNodeLogsRequest:
输出对象:RPCCountResponse:
{ // 数量 int64 count; }
设置日志为已读
admin
RPC
updateNodeLogsRead (UpdateNodeLogsReadRequest) returns (RPCSuccess)
HTTP
POST /NodeLogService/updateNodeLogsRead
输入对象:UpdateNodeLogsReadRequest:
输出对象:RPCSuccess:
{ }
设置所有日志未已读
admin
RPC
updateAllNodeLogsRead (UpdateAllNodeLogsReadRequest) returns (RPCSuccess)
HTTP
POST /NodeLogService/updateAllNodeLogsRead
输入对象:UpdateAllNodeLogsReadRequest:
{ }
输出对象:RPCSuccess:
{ }
删除日志
admin
RPC
deleteNodeLogs (DeleteNodeLogsRequest) returns (RPCSuccess)
HTTP
POST /NodeLogService/deleteNodeLogs
输入对象:DeleteNodeLogsRequest:
{ // 集群ID int64 nodeClusterId; // 节点ID int64 nodeId; string role; // 读取位置 int64 offset; // 数量,通常不能小于0 int64 size; string dayFrom; string dayTo; // 关键词 string keyword; string level; // 服务ID(网站ID) int64 serverId; int32 fixedState; // 是否获取所有服务相关的日志 bool allServers; int64 originId; bool isUnread; string tag; }
输出对象:RPCSuccess:
{ }