文章目录 本篇内容讲解 基本概念 Point数据点 Label标签 Labels标签组 sample数据点 本篇总结: 本篇内容讲解 point时序中单一数据点的数据结构、大小 标签和标签组 sample时序曲线中的一个点 基本概念 Point数据点 源码位置:prometheus/promql/value.go // Point represents a single data point for a given timestamp. type Point struct { T int64 V float64 } 具体含义:一个时间戳和一个value组合成的数据点 size:16byte(包含1个8byte int64时间戳和1个8byte float64 value)