mirror of
https://github.com/ocaml-tracing/ocaml-opentelemetry.git
synced 2026-03-13 14:06:32 -04:00
add histogram metrics (untested)
This commit is contained in:
parent
4bc5e2f5d1
commit
198027a519
1 changed files with 23 additions and 4 deletions
|
|
@ -625,15 +625,34 @@ module Metrics = struct
|
||||||
~aggregation_temporality ()) in
|
~aggregation_temporality ()) in
|
||||||
default_metric ~name ?description ?unit_ ~data ()
|
default_metric ~name ?description ?unit_ ~data ()
|
||||||
|
|
||||||
(* TODO
|
(** Histogram data
|
||||||
|
@param count number of values in population (non negative)
|
||||||
|
@param sum sum of values in population (0 if count is 0)
|
||||||
|
@param bucket_counts count value of histogram for each bucket. Sum of
|
||||||
|
the counts must be equal to [count].
|
||||||
|
length must be [1+length explicit_bounds]
|
||||||
|
@param explicit_bounds strictly increasing list of bounds for the buckets *)
|
||||||
|
let histogram_data_point
|
||||||
|
?(start_time_unix_nano=_program_start)
|
||||||
|
?(now=Timestamp_ns.now_unix_ns())
|
||||||
|
?(attrs=[])
|
||||||
|
?(exemplars=[])
|
||||||
|
?(explicit_bounds=[])
|
||||||
|
?sum
|
||||||
|
~bucket_counts
|
||||||
|
~count
|
||||||
|
() : histogram_data_point =
|
||||||
|
let attributes = attrs |> List.map _conv_key_value in
|
||||||
|
default_histogram_data_point ~start_time_unix_nano ~time_unix_nano:now
|
||||||
|
~attributes ~exemplars ~bucket_counts ~explicit_bounds ~count ?sum ()
|
||||||
|
|
||||||
let histogram ~name ?description ?unit_
|
let histogram ~name ?description ?unit_
|
||||||
?aggregation_temporality
|
?aggregation_temporality
|
||||||
(l:number_data_point list) : t =
|
(l:histogram_data_point list) : t =
|
||||||
let data h=
|
let data =
|
||||||
Histogram (default_histogram ~data_points:l
|
Histogram (default_histogram ~data_points:l
|
||||||
?aggregation_temporality ()) in
|
?aggregation_temporality ()) in
|
||||||
default_metric ~name ?description ?unit_ ~data ()
|
default_metric ~name ?description ?unit_ ~data ()
|
||||||
*)
|
|
||||||
|
|
||||||
(* TODO: exponential history *)
|
(* TODO: exponential history *)
|
||||||
(* TODO: summary *)
|
(* TODO: summary *)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue