ocaml-opentelemetry/tests/cohttp/test_get_url.ml
2024-08-05 10:00:52 +02:00

8 lines
266 B
OCaml

let url = "http://localhost:3000"
let cohttp () =
let config = Opentelemetry_client_cohttp_lwt.Config.make ~url () in
Opentelemetry_client_cohttp_lwt.with_setup ~config () @@ fun () ->
print_endline @@ Printf.sprintf "cohttp url = %s" url
let () = cohttp ()