查看InfluxDB Quick Start的源代码
←
InfluxDB Quick Start
跳转到:
导航
,
搜索
因为以下原因,你没有权限编辑本页:
您刚才请求的操作只有这个用户组中的用户才能使用:
用户
您可以查看并复制此页面的源代码:
== Key Concepts == * [https://mp.weixin.qq.com/s?__biz=MzIwNjEwNTQ4Mw%3D%3D&mid=2651576941&idx=1&sn=69e6eddc2598908d48853676c04ce3c5&chksm=8cd9c489bbae4d9fa8ce0c6d0bb09e09788e6feec4a3e756e06c9c2d445713cb08dff0b90f9b 饿了么 Influxdb 实践之路] * [http://blog.shell909090.org/blog/archives/2863/ openssl证书相关] === Database === A logical container for users, retention policies, continuous queries, and time series data <br> === Measurement === The part of InfluxDB’s structure that describes the data stored in the associated fields. Measurements are strings. <br> === Tag === The key-value pair in InfluxDB’s data structure that records metadata. Tags are an optional part of InfluxDB’s data structure but they are useful for storing commonly-queried metadata; tags are indexed so queries on tags are performant. Query tip: Compare tags to fields; fields are not indexed. <br> ==== Tag Key ==== The key part of the key-value pair that makes up a tag. Tag keys are strings and they store metadata. Tag keys are indexed so queries on tag keys are performant. Query tip: Compare tag keys to field keys; field keys are not indexed. <br> ==== Tag Value ==== The value part of the key-value pair that makes up a tag. Tag values are strings and they store metadata. Tag values are indexed so queries on tag values are performant. <br> ==== Tag Set ==== The collection of tag keys and tag values on a point. <br> === Field === The key-value pair in InfluxDB’s data structure that records metadata and the actual data value. Fields are required in InfluxDB’s data structure and they are <b>not indexed</b> - queries on field values scan all points that match the specified time range and, as a result, are not performant relative to tags. Query tip: Compare fields to tags; <b>tags are indexed.</b> <br> ==== Field Key ==== The key part of the key-value pair that makes up a field. Field keys are strings and they store metadata. <br> ==== Field Value ==== The value part of the key-value pair that makes up a field. * Field values are the actual data; * They can be strings, floats, integers, or booleans. * It is always associated with a timestamp. <b>Field values are not indexed</b> - queries on field values scan all points that match the specified time range and, as a result, are not performant. Query tip: Compare field values to tag values; tag values are indexed. <br> ==== Field Set ==== The collection of field keys and field values on a point. <br> === Series === The collection of data in InfluxDB’s data structure that share a measurement, tag set, and retention policy. Note: The field set is not part of the series identification! <br><br>
返回到
InfluxDB Quick Start
。
个人工具
登录
名字空间
页面
讨论
变换
查看
阅读
查看源代码
查看历史
操作
搜索
导航
首页
社区专页
新闻动态
最近更改
随机页面
帮助
工具箱
链入页面
相关更改
特殊页面