0

我使用 CloudLinux 运行共享网络托管。从中,我可以得到一堆性能指标

所以,我的 influxDB 是:

测量:lve

字段:CPU,EP,IO,IOPS,MEM,MEMPHY,NETI,NETO,NPROC,fEP,fMEM,fMEMPHY,fNPROC,lCPU,lCPUW,lEP,lIO,lIOPS,lMEM,lMEMPHY,lNETI,lNETO,lNPROC,nCPU

标签:xpool,主机,用户(其中​​:xpool是xen-pool uid,主机是cloudLinux的主机名,用户是共享主机的用户名)

每 5 秒收集一次数据

查询语句如何:

  1. 从特定 xpool+host 中选择记录,然后

  2. 获得 5 个唯一的用户名,在 5 分钟内产生 TOP CPU 使用率?有数百个用户名,但我只想获得前 5 名。

注意:与https://docs.influxdata.com/influxdb/v1.5/query_language/functions/#top中的 TOP() 示例 4 相同,除非预期结果是:

name: h2o_feet
time                  top    location
----                  ---    --------
2015-08-18T00:00:00Z  8.12   coyote_creek
2015-08-18T00:54:00Z  2.054  santa_monica

而不是 :

name: h2o_feet
time                  top    location
----                  ---    --------
2015-08-18T00:48:00Z  7.11   coyote_creek
2015-08-18T00:54:00Z  6.982  coyote_creek
2015-08-18T00:54:00Z  2.054  santa_monica
2015-08-18T00:24:00Z  7.635  coyote_creek
2015-08-18T00:30:00Z  7.5    coyote_creek
2015-08-18T00:36:00Z  7.372  coyote_creek
2015-08-18T00:00:00Z  8.12   coyote_creek
2015-08-18T00:06:00Z  8.005  coyote_creek
2015-08-18T00:12:00Z  7.887  coyote_creek

因为“8.12”是“coyote_creek”的最高值,而“2.054”是“santa_monica”的最高值

真挚地

-比诺-

4

1 回答 1

2

可能子查询可能会有所帮助,例如,这是来自使用电报的数据库:

SELECT top,host FROM (SELECT TOP(usage_user, 1) AS top, host from cpu WHERE time > now() -1m GROUP BY host)

它将输出如下内容:

name: cpu
time                top                 host
----                ---                 ----
1527489800000000000 1.4937106918238994  1.host.tld
1527489808000000000 0.3933910306845004  2.host.tld
1527489810000000000 4.17981072555205    3.host.tld
1527489810000000000 0.8654602675059009  4.host.tld

第一个查询是:

SELECT TOP(usage_user, 1) AS top, host from cpu WHERE time > now() -1m GROUP BY host

用于TOP仅获取 1 项并使用该字段usage_user

然后为了“漂亮打印”使用了一个子查询:

SELECT top,host FROM (...)
于 2018-05-28T06:49:09.200 回答