Merge pull request #103 from shonfeder/eio-fixes

Fix Eio collector to work accross domains
This commit is contained in:
Simon Cruanes 2025-09-02 09:26:18 -04:00 committed by GitHub
commit d9dd7ce32c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 239 additions and 206 deletions

View file

@ -136,7 +136,7 @@ end = struct
let create net = Httpc.make ~https:(Some (https ~authenticator)) net let create net = Httpc.make ~https:(Some (https ~authenticator)) net
(* send the content to the remote endpoint/path *) (* send the content to the remote endpoint/path *)
let send (client : t) ~url ~decode (bod : string) : ('a, error) result = let send (client : t) ~url ~decode (body : string) : ('a, error) result =
Switch.run @@ fun sw -> Switch.run @@ fun sw ->
let uri = Uri.of_string url in let uri = Uri.of_string url in
@ -146,7 +146,7 @@ end = struct
Header.(add headers "Content-Type" "application/x-protobuf") Header.(add headers "Content-Type" "application/x-protobuf")
in in
let body = Cohttp_eio.Body.of_string bod in let body = Cohttp_eio.Body.of_string body in
let r = let r =
try try
let r = Httpc.post client ~sw ~headers ~body uri in let r = Httpc.post client ~sw ~headers ~body uri in
@ -223,32 +223,16 @@ end
exceptions inside should be caught, see exceptions inside should be caught, see
https://opentelemetry.io/docs/reference/specification/error-handling/ *) https://opentelemetry.io/docs/reference/specification/error-handling/ *)
let mk_emitter ~sw ~stop ~(config : Config.t) ~(net : _ Eio.Net.t) () : let mk_emitter ~stop ~net (config : Config.t) : (module EMITTER) =
(module EMITTER) =
let open Proto in
(* local helpers *) (* local helpers *)
let open struct let open struct
let timeout = let client =
if config.batch_timeout_ms > 0 then (* Prime RNG state for TLS *)
Some Mtime.Span.(config.batch_timeout_ms * ms) Mirage_crypto_rng_unix.use_default ();
else Httpc.create net
None
let batch_traces : Trace.resource_spans Batch.t = let send_http ~url data : unit =
Batch.make ?batch:config.batch_traces ?timeout () let r = Httpc.send client ~url ~decode:(`Ret ()) data in
let batch_metrics : Metrics.resource_metrics Batch.t =
Batch.make ?batch:config.batch_metrics ?timeout ()
let batch_logs : Logs.resource_logs Batch.t =
Batch.make ?batch:config.batch_logs ?timeout ()
let on_tick_cbs_ = Atomic.make (AList.make ())
let set_on_tick_callbacks = Atomic.set on_tick_cbs_
let send_http_ (httpc : Httpc.t) ~url data : unit =
let r = Httpc.send httpc ~url ~decode:(`Ret ()) data in
match r with match r with
| Ok () -> () | Ok () -> ()
| Error `Sysbreak -> | Error `Sysbreak ->
@ -261,131 +245,111 @@ let mk_emitter ~sw ~stop ~(config : Config.t) ~(net : _ Eio.Net.t) () :
(* avoid crazy error loop *) (* avoid crazy error loop *)
Eio_unix.sleep 3. Eio_unix.sleep 3.
(* emit metrics, if the batch is full or timeout lapsed *) let timeout =
let emit_metrics_maybe ~now ?force client () = if config.batch_timeout_ms > 0 then
Batch.pop_if_ready ?force ~now batch_metrics Some Mtime.Span.(config.batch_timeout_ms * ms)
|> Option.iter (fun collected_metrics -> else
let gc_metrics = GC_metrics.drain () in None
gc_metrics @ collected_metrics
|> Signal.Encode.metrics
|> send_http_ client ~url:config.url_metrics)
let emit_traces_maybe ~now ?force client () = let batch_traces : Proto.Trace.resource_spans Batch.t =
Batch.pop_if_ready ?force ~now batch_traces Batch.make ?batch:config.batch_traces ?timeout ()
|> Option.iter (fun ts ->
Signal.Encode.traces ts |> send_http_ client ~url:config.url_traces)
let emit_logs_maybe ~now ?force client () = let batch_metrics : Proto.Metrics.resource_metrics Batch.t =
Batch.pop_if_ready ?force ~now batch_logs Batch.make ?batch:config.batch_metrics ?timeout ()
|> Option.iter (fun ls ->
Signal.Encode.logs ls |> send_http_ client ~url:config.url_logs) let batch_logs : Proto.Logs.resource_logs Batch.t =
Batch.make ?batch:config.batch_logs ?timeout ()
let push_to_batch b e =
match Batch.push b e with
| `Ok -> ()
| `Dropped -> Atomic.incr n_errors
let[@inline] guard_exn_ where f = let[@inline] guard_exn_ where f =
try f () try f ()
with e -> with e ->
let bt = Printexc.get_backtrace () in let bt = Printexc.get_backtrace () in
Printf.eprintf Printf.eprintf "opentelemetry-eio: uncaught exception in %s: %s\n%s\n%!"
"opentelemetry-curl: uncaught exception in %s: %s\n%s\n%!" where where (Printexc.to_string e) bt
(Printexc.to_string e) bt
let emit_all_force (httpc : Httpc.t) : unit = let push_traces x =
let now = Mtime_clock.now () in let@ () = guard_exn_ "push trace" in
Fiber.all push_to_batch batch_traces x
[
emit_logs_maybe ~now ~force:true httpc;
emit_metrics_maybe ~now ~force:true httpc;
emit_traces_maybe ~now ~force:true httpc;
]
let tick_common_ () = let push_metrics x =
if Config.Env.get_debug () then let@ () = guard_exn_ "push metrics" in
Printf.eprintf "tick (from %d)\n%!" (tid ());
sample_gc_metrics_if_needed (); sample_gc_metrics_if_needed ();
push_to_batch batch_metrics x
let push_logs x =
let@ () = guard_exn_ "push logs" in
push_to_batch batch_logs x
let maybe_emit (batch : 'a Batch.t) url (f : 'a list -> string) ~now ~force
() : unit =
Batch.pop_if_ready ~force ~now batch
|> Option.iter (fun signals -> f signals |> send_http ~url)
let emit_traces_maybe =
maybe_emit batch_traces config.url_traces Signal.Encode.traces
let emit_metrics_maybe =
maybe_emit batch_metrics config.url_metrics (fun collected_metrics ->
let gc_metrics = GC_metrics.drain () in
gc_metrics @ collected_metrics |> Signal.Encode.metrics)
let emit_logs_maybe =
maybe_emit batch_logs config.url_logs Signal.Encode.logs
let emit_all ~force : unit =
Switch.run @@ fun sw ->
let now = Mtime_clock.now () in
Fiber.fork ~sw @@ emit_logs_maybe ~now ~force;
Fiber.fork ~sw @@ emit_metrics_maybe ~now ~force;
Fiber.fork ~sw @@ emit_traces_maybe ~now ~force
let on_tick_cbs_ = Atomic.make (AList.make ())
let run_tick_callbacks () =
List.iter List.iter
(fun f -> (fun f ->
try f () try f ()
with e -> with e ->
Printf.eprintf "on tick callback raised: %s\n" Printf.eprintf "on tick callback raised: %s\n"
(Printexc.to_string e)) (Printexc.to_string e))
(AList.get @@ Atomic.get on_tick_cbs_); (AList.get @@ Atomic.get on_tick_cbs_)
()
(* thread that calls [tick()] regularly, to help enforce timeouts *)
let ticker_fiber ~tick : unit -> [ `Stop_daemon ] =
let rec loop () =
if Atomic.get stop then
`Stop_daemon
else (
tick ();
Eio_unix.sleep 0.5;
loop ()
)
in
loop
end in end in
let httpc =
(* Prime RNG state for TLS *)
Mirage_crypto_rng_unix.use_default ();
Httpc.create net
in
let module M = struct let module M = struct
let push_to_batch b e = let set_on_tick_callbacks = Atomic.set on_tick_cbs_
match Batch.push b e with
| `Ok -> ()
| `Dropped -> Atomic.incr n_errors
let push_trace e = let push_trace e = push_traces e
let@ () = guard_exn_ "push trace" in
push_to_batch batch_traces e;
let now = Mtime_clock.now () in
Fiber.fork ~sw (emit_traces_maybe ~now httpc)
let push_metrics e = let push_metrics e = push_metrics e
let@ () = guard_exn_ "push metrics" in
let push_logs e = push_logs e
let tick () =
if Config.Env.get_debug () then
Printf.eprintf "tick (from %d)\n%!" (tid ());
run_tick_callbacks ();
sample_gc_metrics_if_needed (); sample_gc_metrics_if_needed ();
push_to_batch batch_metrics e; emit_all ~force:false
let now = Mtime_clock.now () in
Fiber.fork ~sw (emit_metrics_maybe ~now httpc)
let push_logs e =
let@ () = guard_exn_ "push logs" in
push_to_batch batch_logs e;
let now = Mtime_clock.now () in
Fiber.fork ~sw (emit_logs_maybe ~now httpc)
let set_on_tick_callbacks = set_on_tick_callbacks
let tick_ () =
tick_common_ ();
sample_gc_metrics_if_needed ();
let now = Mtime_clock.now () in
Fiber.all
[
emit_logs_maybe ~now httpc;
emit_metrics_maybe ~now httpc;
emit_traces_maybe ~now httpc;
]
let () = Eio.Fiber.fork_daemon ~sw (ticker_fiber ~tick:tick_)
let tick () = Fiber.fork ~sw tick_
let cleanup ~on_done () = let cleanup ~on_done () =
if Config.Env.get_debug () then if Config.Env.get_debug () then
Printf.eprintf "opentelemetry: exiting…\n%!"; Printf.eprintf "opentelemetry: exiting…\n%!";
(* This must be in its own switch, because it MUST run even if the Atomic.set stop true;
surrounding switch in the environment has been cancelled. *) run_tick_callbacks ();
Switch.run @@ fun sw -> sample_gc_metrics_if_needed ();
Fiber.fork ~sw (fun () -> emit_all ~force:true;
emit_all_force httpc; on_done ()
on_done ())
end in end in
(module M : EMITTER) (module M : EMITTER)
module Backend (Emitter : EMITTER) : Opentelemetry.Collector.BACKEND = struct module Backend (Emitter : EMITTER) : Opentelemetry.Collector.BACKEND = struct
include Emitter
open Opentelemetry.Proto open Opentelemetry.Proto
open Opentelemetry.Collector open Opentelemetry.Collector
open Emitter
let send_trace : Trace.resource_spans list sender = let send_trace : Trace.resource_spans list sender =
{ {
@ -471,30 +435,46 @@ module Backend (Emitter : EMITTER) : Opentelemetry.Collector.BACKEND = struct
push_logs m; push_logs m;
ret ()); ret ());
} }
let tick = Emitter.tick
let cleanup = Emitter.cleanup
let set_on_tick_callbacks = Emitter.set_on_tick_callbacks
end end
let create_backend ~sw ?(stop = Atomic.make false) ?(config = Config.make ()) let create_backend ~sw ?(stop = Atomic.make false) ?(config = Config.make ())
(env : Eio_unix.Stdenv.base) : (module OT.Collector.BACKEND) = env : (module OT.Collector.BACKEND) =
let module E = (val mk_emitter ~sw ~stop ~config ~net:env#net ()) in let module E = (val mk_emitter ~stop ~net:env#net config) in
(module Backend (E)) let module B = Backend (E) in
(* Run a background fiber to keep the backend ticking regularly.
NOTE: This cannot be located inside the [Backend], because switches
are not thread safe, and cannot be used accross domains, but the
backend is accessed across domains. *)
Eio.Fiber.fork ~sw (fun () ->
while not @@ Atomic.get stop do
Eio.Time.sleep env#clock 0.5;
B.tick ()
done);
(module B)
let setup_ ~sw ?stop ?config env : unit = let setup_ ~sw ?stop ?config env : unit =
let backend = create_backend ~sw ?stop ?config env in let backend = create_backend ?stop ?config ~sw env in
OT.Collector.set_backend backend; OT.Collector.set_backend backend
()
let setup ?stop ?config ?(enable = true) env = let setup ?stop ?config ?(enable = true) ~sw env =
if enable then Switch.run @@ fun sw -> setup_ ~sw ?stop ?config env if enable then setup_ ~sw ?stop ?config env
let remove_backend () = OT.Collector.remove_backend ~on_done:ignore () let remove_backend () = OT.Collector.remove_backend ~on_done:ignore ()
let with_setup ?stop ?(config = Config.make ()) ?(enable = true) f env = let with_setup ?stop ?config ?(enable = true) f env =
(* NOTE: We must thread the switch [sw] through to all the forked threads in if enable then
the Backend's Emitter, to ensure that we can wait on all of them to Switch.run @@ fun sw ->
complete before before removing the backend during cleanup. *) snd
Switch.run (fun sw -> @@ Fiber.pair
if enable then ( (fun () -> setup_ ~sw ?stop ?config env)
setup_ ~sw ?stop ~config env; (fun () -> Fun.protect ~finally:(fun () -> remove_backend ()) f)
Switch.on_release sw remove_backend else
); f ()
f env)

View file

@ -24,6 +24,7 @@ val setup :
?stop:bool Atomic.t -> ?stop:bool Atomic.t ->
?config:Config.t -> ?config:Config.t ->
?enable:bool -> ?enable:bool ->
sw:Eio.Switch.t ->
Eio_unix.Stdenv.base -> Eio_unix.Stdenv.base ->
unit unit
(** Setup endpoint. This modifies {!Opentelemetry.Collector.backend}. (** Setup endpoint. This modifies {!Opentelemetry.Collector.backend}.
@ -43,7 +44,7 @@ val with_setup :
?stop:bool Atomic.t -> ?stop:bool Atomic.t ->
?config:Config.t -> ?config:Config.t ->
?enable:bool -> ?enable:bool ->
(Eio_unix.Stdenv.base -> 'a) -> (unit -> 'a) ->
Eio_unix.Stdenv.base -> Eio_unix.Stdenv.base ->
'a 'a
(** [with_setup () f] is like [setup(); f()] but takes care of cleaning up after (** [with_setup () f] is like [setup(); f()] but takes care of cleaning up after

View file

@ -109,6 +109,7 @@ let () =
let batch_metrics = ref 3 in let batch_metrics = ref 3 in
let batch_logs = ref 400 in let batch_logs = ref 400 in
let url = ref None in let url = ref None in
let n_procs = ref 1 in
let opts = let opts =
[ [
"--debug", Arg.Bool (( := ) debug), " enable debug output"; "--debug", Arg.Bool (( := ) debug), " enable debug output";
@ -127,12 +128,18 @@ let () =
"--sleep-outer", Arg.Set_float sleep_outer, " sleep (in s) in outer loop"; "--sleep-outer", Arg.Set_float sleep_outer, " sleep (in s) in outer loop";
"--iterations", Arg.Set_int iterations, " the number of iterations to run"; "--iterations", Arg.Set_int iterations, " the number of iterations to run";
"-j", Arg.Set_int n_jobs, " number of parallel jobs"; "-j", Arg.Set_int n_jobs, " number of parallel jobs";
"--procs", Arg.Set_int n_procs, " number of processes";
] ]
|> Arg.align |> Arg.align
in in
Arg.parse opts (fun _ -> ()) "emit1 [opt]*"; Arg.parse opts (fun _ -> ()) "emit1 [opt]*";
if !n_procs > 1 then
failwith
"TODO: add support for running multiple processes to the lwt-cohttp \
emitter";
let some_if_nzero r = let some_if_nzero r =
if !r > 0 then if !r > 0 then
Some !r Some !r

View file

@ -11,8 +11,6 @@ let sleep_outer = ref 2.0
let n_jobs = ref 1 let n_jobs = ref 1
let iterations = ref 1
let num_sleep = Atomic.make 0 let num_sleep = Atomic.make 0
let stress_alloc_ = ref true let stress_alloc_ = ref true
@ -24,16 +22,15 @@ let num_tr = Atomic.make 0
(* Counter used to mark simulated failures *) (* Counter used to mark simulated failures *)
let i = ref 0 let i = ref 0
let run_job clock _job_id : unit = let run_job clock _job_id iterations : unit =
while not @@ Atomic.get stop do
let@ scope = let@ scope =
Atomic.incr num_tr; Atomic.incr num_tr;
OT.Trace.with_ ~kind:OT.Span.Span_kind_producer "loop.outer" OT.Trace.with_ ~kind:OT.Span.Span_kind_producer "loop.outer"
~attrs:[ "i", `Int !i ] ~attrs:[ "i", `Int !i ]
in in
for j = 0 to !iterations do for j = 0 to iterations do
if j >= !iterations then if j >= iterations then
(* Terminate program, having reached our max iterations *) (* Terminate program, having reached our max iterations *)
Atomic.set stop true Atomic.set stop true
else else
@ -78,9 +75,8 @@ let run_job clock _job_id : unit =
OT.Event.make "done with alloc") OT.Event.make "done with alloc")
with Failure _ -> () with Failure _ -> ()
done done
done
let run env : unit = let run env proc iterations () : unit =
OT.GC_metrics.basic_setup (); OT.GC_metrics.basic_setup ();
OT.Metrics_callbacks.register (fun () -> OT.Metrics_callbacks.register (fun () ->
@ -91,11 +87,11 @@ let run env : unit =
]); ]);
let n_jobs = max 1 !n_jobs in let n_jobs = max 1 !n_jobs in
Printf.printf "run %d jobs\n%!" n_jobs; Printf.printf "run %d jobs in proc %d\n%!" n_jobs proc;
Eio.Switch.run (fun sw -> Eio.Switch.run (fun sw ->
for j = 1 to n_jobs do for j = 1 to n_jobs do
Eio.Fiber.fork ~sw (fun () -> run_job env#clock j) Eio.Fiber.fork ~sw (fun () -> run_job env#clock j iterations)
done) done)
let () = let () =
@ -109,6 +105,8 @@ let () =
let batch_metrics = ref 3 in let batch_metrics = ref 3 in
let batch_logs = ref 400 in let batch_logs = ref 400 in
let url = ref None in let url = ref None in
let n_iterations = ref 1 in
let n_procs = ref 1 in
let opts = let opts =
[ [
"--debug", Arg.Bool (( := ) debug), " enable debug output"; "--debug", Arg.Bool (( := ) debug), " enable debug output";
@ -125,8 +123,11 @@ let () =
"--batch-logs", Arg.Int (( := ) batch_logs), " size of logs batch"; "--batch-logs", Arg.Int (( := ) batch_logs), " size of logs batch";
"--sleep-inner", Arg.Set_float sleep_inner, " sleep (in s) in inner loop"; "--sleep-inner", Arg.Set_float sleep_inner, " sleep (in s) in inner loop";
"--sleep-outer", Arg.Set_float sleep_outer, " sleep (in s) in outer loop"; "--sleep-outer", Arg.Set_float sleep_outer, " sleep (in s) in outer loop";
"--iterations", Arg.Set_int iterations, " the number of iterations to run"; ( "--iterations",
"-j", Arg.Set_int n_jobs, " number of parallel jobs"; Arg.Set_int n_iterations,
" the number of iterations to run" );
"-j", Arg.Set_int n_jobs, " number of jobs per processes";
"--procs", Arg.Set_int n_procs, " number of processes";
] ]
|> Arg.align |> Arg.align
in in
@ -155,4 +156,17 @@ let () =
Printf.printf "\ndone. %d spans in %.4fs (%.4f/s)\n%!" Printf.printf "\ndone. %d spans in %.4fs (%.4f/s)\n%!"
(Atomic.get num_tr) elapsed n_per_sec) (Atomic.get num_tr) elapsed n_per_sec)
in in
Opentelemetry_client_cohttp_eio.with_setup ~stop ~config run |> Eio_main.run Eio_main.run @@ fun env ->
(if !n_procs < 2 then
Opentelemetry_client_cohttp_eio.with_setup ~stop ~config
(run env 0 !n_iterations) env
else
Eio.Switch.run @@ fun sw ->
Opentelemetry_client_cohttp_eio.setup ~stop ~config ~sw env;
let dm = Eio.Stdenv.domain_mgr env in
Eio.Switch.run (fun sw ->
for proc = 1 to !n_procs do
Eio.Fiber.fork ~sw @@ fun () ->
Eio.Domain_manager.run dm (run env proc !n_iterations)
done));
Opentelemetry.Collector.remove_backend () ~on_done:ignore

View file

@ -56,6 +56,15 @@ let filter_map_metrics f signals =
|> List.find_map (fun ss -> |> List.find_map (fun ss ->
ss.Proto.Metrics.metrics |> List.find_map f)) ss.Proto.Metrics.metrics |> List.find_map f))
let count_metrics_with_name name signals =
signals
|> filter_map_metrics (fun s ->
if String.equal s.Proto.Metrics.name name then
Some s
else
None)
|> List.length
let number_data_point_to_float : Proto.Metrics.number_data_point_value -> float let number_data_point_to_float : Proto.Metrics.number_data_point_value -> float
= function = function
| Proto.Metrics.As_double f -> f | Proto.Metrics.As_double f -> f
@ -98,6 +107,7 @@ let count_logs_with_body p signals =
type params = { type params = {
url: string; url: string;
jobs: int; jobs: int;
procs: int;
batch_traces: int; batch_traces: int;
batch_metrics: int; batch_metrics: int;
batch_logs: int; batch_logs: int;
@ -109,6 +119,8 @@ let cmd exec params =
exec; exec;
"-j"; "-j";
string_of_int params.jobs; string_of_int params.jobs;
"--procs";
string_of_int params.procs;
"--url"; "--url";
params.url; params.url;
"--iterations"; "--iterations";
@ -134,22 +146,24 @@ let tests params signal_batches =
(* TODO: What properties of batch sizes does it make sense to test? *) (* TODO: What properties of batch sizes does it make sense to test? *)
test "loop.outer spans" (fun () -> test "loop.outer spans" (fun () ->
Alcotest.(check' int) Alcotest.(check' int)
~msg:"number of occurrences should equal the configured jobs" ~msg:
~expected:params.jobs "number of occurrences should equal the configured jobs * the \
configured processes"
~expected:(params.jobs * params.procs)
~actual:(count_spans_with_name "loop.outer" signals)); ~actual:(count_spans_with_name "loop.outer" signals));
test "loop.inner spans" (fun () -> test "loop.inner spans" (fun () ->
Alcotest.(check' int) Alcotest.(check' int)
~msg: ~msg:
"number of occurrences should equal the configured jobs * the \ "number of occurrences should equal the configured jobs * the \
configured iterations" configured iterations * configured processes"
~expected:(params.jobs * params.iterations) ~expected:(params.jobs * params.iterations * params.procs)
~actual:(count_spans_with_name "loop.inner" signals)); ~actual:(count_spans_with_name "loop.inner" signals));
test "alloc spans" (fun () -> test "alloc spans" (fun () ->
Alcotest.(check' int) Alcotest.(check' int)
~msg: ~msg:
"number of occurrences should equal the configured jobs * the \ "number of occurrences should equal the configured jobs * the \
configured iterations" configured iterations * configured processes"
~expected:(params.jobs * params.iterations) ~expected:(params.jobs * params.iterations * params.procs)
~actual:(count_spans_with_name "alloc" signals); ~actual:(count_spans_with_name "alloc" signals);
Alcotest.(check' bool) Alcotest.(check' bool)
~msg:"should have 'done with alloc' event" ~expected:true ~msg:"should have 'done with alloc' event" ~expected:true
@ -167,16 +181,19 @@ let tests params signal_batches =
|> List.for_all (fun (e : Proto.Trace.span_event) -> |> List.for_all (fun (e : Proto.Trace.span_event) ->
String.equal e.name "done with alloc"))); String.equal e.name "done with alloc")));
test "num-sleep metrics" (fun () -> test "num-sleep metrics" (fun () ->
Alcotest.(check' (float 0.)) Alcotest.(check' bool)
~msg:"should record jobs * iterations sleeps" ~msg:
~expected:(params.jobs * params.iterations |> float_of_int) "should record at lest as many sleep metrics as there are \
iterations configured"
~expected:true
~actual: ~actual:
(get_metric_values "num-sleep" signals (count_metrics_with_name "num-sleep" signals >= params.iterations));
|> List.sort Float.compare |> List.rev |> List.hd));
test "logs" (fun () -> test "logs" (fun () ->
Alcotest.(check' int) Alcotest.(check' int)
~msg:"should record jobs * iterations occurrences of 'inner at n'" ~msg:
~expected:(params.jobs * params.iterations) "should record jobs * iterations occurrences * configured \
processes of 'inner at n'"
~expected:(params.jobs * params.iterations * params.procs)
~actual: ~actual:
(signals (signals
|> count_logs_with_body (function |> count_logs_with_body (function

View file

@ -15,6 +15,7 @@ let () =
{ {
url; url;
jobs = 1; jobs = 1;
procs = 1;
iterations = 1; iterations = 1;
batch_traces = 2; batch_traces = 2;
batch_metrics = 2; batch_metrics = 2;
@ -24,6 +25,17 @@ let () =
{ {
url; url;
jobs = 3; jobs = 3;
procs = 1;
iterations = 1;
batch_traces = 400;
batch_metrics = 3;
batch_logs = 400;
} );
( "emit1_eio",
{
url;
jobs = 3;
procs = 3;
iterations = 1; iterations = 1;
batch_traces = 400; batch_traces = 400;
batch_metrics = 3; batch_metrics = 3;

View file

@ -25,6 +25,7 @@ let () =
{ {
url; url;
jobs = 1; jobs = 1;
procs = 1;
iterations = 1; iterations = 1;
batch_traces = 2; batch_traces = 2;
batch_metrics = 2; batch_metrics = 2;
@ -34,6 +35,7 @@ let () =
{ {
url; url;
jobs = 3; jobs = 3;
procs = 1;
iterations = 1; iterations = 1;
batch_traces = 400; batch_traces = 400;
batch_metrics = 3; batch_metrics = 3;