为什么这个简单的 influx select 查询返回空结果?

Why is this simple influx select query returning an empty result?

以下来自:

> use abcxyz;
Using database abcxyz
> INSERT cpu,host=serverA,region=us_west value=0.64
> SELECT * from abcxyz;
> SELECT cpu from abcxyz;

为什么 SELECT 查询没有返回任何结果?


我找到了有效的查询:

select * from cpu;
name: cpu
time                host    region  value
----                ----    ------  -----
1555173896021474852 serverA us_west 0.64
1555173957479404100 serverA us_west 0.64
1555173967231619401 serverA us_west 0.64

SELECT 对存在于数据库中的测量起作用。您可以将度量视为标准 RDBMS 软件中的 table。

所以 SELECT fields_or_tags FROM measurement 是正确的语法