Update glossary.md

pull/331/head
kelseiv 2019-07-15 15:01:22 -07:00 committed by GitHub
parent 87e521d0cc
commit aedeab0eaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -576,7 +576,7 @@ An operator (`|>`) used in Flux to chain operations together. Specifies the outp
### point
InfluxDB stores points. A single line of text in line protocol format represents one point in InfluxDB. A point has four components: a measurement, a tag set, a field set, and a timestamp.
InfluxDB stores points. A point consists of a single collection of fields in a series. A single line of text in line protocol format represents one point in InfluxDB. Each point has four components: a measurement, a tag set, a field set, and a timestamp. A point is uniquely identified by its series and timestamp. In a series, you cannot store more than one point with the same timestamp. If you write a point to a series with a timestamp that matches an existing point, the field set becomes a union of the old and new field set, where any ties go to the new field set.
Related entries: [measurement](#measurement), [tag set](#tag set), [field set](#field set), [timestamp](#timestamp)