struct
Prometheus::Sample
- Prometheus::Sample
- Struct
- Value
- Object
Overview
Represents a single sample value at a point in time.
A Sample combines:
- A metric name
- A set of labels
- A numeric value
- An optional timestamp
Samples are used to represent the actual data points collected by metrics. The Sample format follows the Prometheus exposition format:
metric_name{label="value"} 42
# Or with timestamp:
metric_name{label="value"} 42 1234567890
Defined in:
types.crConstructors
- .new(name : String, labels : Hash(String, String), value : Float64, timestamp : Int64 | Nil = nil)
- .new(name : String, labels : LabelSet, value : Float64, timestamp : Int64 | Nil = nil)
Instance Method Summary
- #==(other : self)
- #collect(io : IO) : Nil
-
#hash(hasher)
See
Object#hash(hasher) - #labels : LabelSet
- #name : String
- #timestamp : Int64 | Nil
-
#to_s(io : IO)
Same as
#inspect(io). - #value : Float64
Constructor Detail
def self.new(name : String, labels : Hash(String, String), value : Float64, timestamp : Int64 | Nil = nil)
#