0
すべてInfluxDB正規表現
私はinfluxdb
でfenetto_data
という名前のデータベースを持っています。その中で私は、テーブルには、次のフィールド
- ボルトを持って
metrics
と名付けてい - 湿度
- ワット例えば私は、データベース上の保持ポリシーを作成してい
fernetto_data
create retention policy "rp_14days" on "fernetto_data" duration 14d replication 1 shard duration 1d
この保持ポリシーを使用して
私は連続クエリを作成しています
- >
create continuous query "cq_5m_rollups" on "fernetto_data"
resample for 14d
begin
select mean(/./) into "rp_14days"."metrics.5m" from "metrics" group by time(5m)
end
これはmetrics.5m
という名前の新しいテーブルを作成し、これがフォーム
- mean_volt
- mean_humidity
- mean_watt のフィールドを記憶しています0
が、私の要件はmetrics.5m
でも
が可能です。このメトリックと同じフィールド名を格納する必要がありますか?
ありがとうございます!
フィールド名を明示的にハードコーディングせずに方法はありますか? –
フィールド名を変更しないでください。 –