0

为 ScadaLTS 创建基准,它检查每秒存储在数据库中的数据量。

创建数据源

在此处输入图像描述

复制三遍

在此处输入图像描述

并启用每个数据源和数据点。

以及如何计算 ScadaLTS 中每秒保存的数据?

4

1 回答 1

1

您可以使用 SQL 执行此操作:

select 
count(*),
 YEAR(from_unixtime(ts/1000)),
        MONTH(from_unixtime(ts/1000)),
        DAY(from_unixtime(ts/1000)),
        hour(from_unixtime(ts/1000)),
        minute(from_unixtime(ts/1000)),
        second(from_unixtime(ts/1000))
from pointValues 
where
  YEAR(from_unixtime(ts/1000))  = YEAR(NOW()) and
  MONTH(from_unixtime(ts/1000))  = Month(NOW()) and
  DAY(from_unixtime(ts/1000))  = DAY(NOW())
group by
    YEAR(from_unixtime(ts/1000)),
        MONTH(from_unixtime(ts/1000)),
        DAY(from_unixtime(ts/1000)),
        hour(from_unixtime(ts/1000)),
        minute(from_unixtime(ts/1000)),
        second(from_unixtime(ts/1000))
Having count(*) >5
order by count(*) DESC
于 2017-09-28T12:15:47.200 回答