方法列表
获取服务的峰值带宽
admin
RPC
findServerBandwidthStats (FindServerBandwidthStatsRequest) returns (FindServerBandwidthStatsResponse)
HTTP
POST /ServerBandwidthStatService/findServerBandwidthStats
输入对象:FindServerBandwidthStatsRequest:
{ // 服务ID int64 serverId; // YYYYMM,month和day二选一 string month; // YYYYMMDD string day; // 带宽算法,目前支持secondly和avg string algo; }
输出对象:FindServerBandwidthStatsResponse:
获取最近N小时峰值带宽
admin
RPC
findHourlyServerBandwidthStats (FindHourlyServerBandwidthStatsRequest) returns (FindHourlyServerBandwidthStatsResponse)
HTTP
POST /ServerBandwidthStatService/findHourlyServerBandwidthStats
输入对象:FindHourlyServerBandwidthStatsRequest:
{ // 服务ID(网站ID) int64 serverId; int32 hours; // 带宽算法,目前支持secondly和avg string algo; }
输出对象:FindHourlyServerBandwidthStatsResponse:
{ []Stat stats; // 百分位 int32 percentile; // 百分位统计数据 Stat nthStat; Stat { string day; int32 hour; // 峰值字节/秒 int64 bytes; // 峰值比特/秒 int64 bits; } }
获取最近N天峰值带宽
admin
RPC
findDailyServerBandwidthStats (FindDailyServerBandwidthStatsRequest) returns (FindDailyServerBandwidthStatsResponse)
HTTP
POST /ServerBandwidthStatService/findDailyServerBandwidthStats
输入对象:FindDailyServerBandwidthStatsRequest:
{ // 服务ID(网站ID) int64 serverId; int32 days; // 带宽算法,目前支持secondly和avg string algo; }
输出对象:FindDailyServerBandwidthStatsResponse:
{ []Stat stats; // 百分位 int32 percentile; // 百分位统计数据 Stat nthStat; Stat { string day; // 峰值字节/秒 int64 bytes; // 峰值比特/秒 int64 bits; } }
读取日期段内的带宽数据
admin
user
RPC
findDailyServerBandwidthStatsBetweenDays (FindDailyServerBandwidthStatsBetweenDaysRequest) returns (FindDailyServerBandwidthStatsBetweenDaysResponse)
HTTP
POST /ServerBandwidthStatService/findDailyServerBandwidthStatsBetweenDays
输入对象:FindDailyServerBandwidthStatsBetweenDaysRequest:
{ // 用户ID,和服务ID二选一 int64 userId; // 服务ID,和用户ID二选一 int64 serverId; // 开始日期 YYYYMMDD string dayFrom; // 结束日期 YYYYMMDD string dayTo; // 可选项,百分位(nth)带宽位置,0-100之间 int32 percentile; // 区域ID,可选项(目前只有用户整体统计支持区域ID) int64 nodeRegionId; // 带宽算法,目前支持secondly和avg string algo; }
输出对象:FindDailyServerBandwidthStatsBetweenDaysResponse:
{ []Stat stats; Stat nthStat; Stat { string day; string timeAt; // 峰值字节/秒 int64 bytes; // 峰值比特/秒 int64 bits; } }