(not at the head of any monitored branch or PR)
2026-04-02 19:45.03: New job: test opentelemetry-client-ocurl-lwt.0.90, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29633/head (e70d48a1952a7edcae52bb270d471ba97379795b)
                              on fedora-43-ocaml-5.4/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29633/head" && git reset --hard e70d48a1
git fetch origin master
git merge --no-edit c0deda526f99d43a05c065e9218404492897c64b
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-43-ocaml-5.4@sha256:ee186ded9e345e55d4230a8edfeb84c47deaa7f722133ccaecbfc2b88745b5d4
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn opentelemetry-client-ocurl-lwt.0.90 0.90
RUN opam reinstall opentelemetry-client-ocurl-lwt.0.90; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"fedora-43\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'opentelemetry-client-ocurl-lwt.0.90' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test opentelemetry-client-ocurl-lwt.0.90) || true
RUN opam reinstall --with-test --verbose opentelemetry-client-ocurl-lwt.0.90; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"fedora-43\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'opentelemetry-client-ocurl-lwt.0.90' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-04-02 19:45.03: Using cache hint "ocaml/opam:fedora-43-ocaml-5.4@sha256:ee186ded9e345e55d4230a8edfeb84c47deaa7f722133ccaecbfc2b88745b5d4-opentelemetry-client-ocurl-lwt.0.90-e70d48a1952a7edcae52bb270d471ba97379795b"
2026-04-02 19:45.03: Using OBuilder spec:
((from ocaml/opam:fedora-43-ocaml-5.4@sha256:ee186ded9e345e55d4230a8edfeb84c47deaa7f722133ccaecbfc2b88745b5d4)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn opentelemetry-client-ocurl-lwt.0.90 0.90"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall opentelemetry-client-ocurl-lwt.0.90;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"fedora-43\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'opentelemetry-client-ocurl-lwt.0.90' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test opentelemetry-client-ocurl-lwt.0.90) || true"))
 (run (shell  "opam reinstall --with-test --verbose opentelemetry-client-ocurl-lwt.0.90;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"fedora-43\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'opentelemetry-client-ocurl-lwt.0.90' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-02 19:45.03: Waiting for resource in pool OCluster
2026-04-02 19:48.58: Waiting for worker…
2026-04-02 19:49.54: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at c0deda526f Merge pull request #29625 from xvw/release-lunar-v1.0.0
Updating c0deda526f..e70d48a195
Fast-forward
 .../opentelemetry-client-cohttp-eio.0.90/opam      | 48 ++++++++++++++++++++
 .../opentelemetry-client-cohttp-lwt.0.90/opam      | 48 ++++++++++++++++++++
 .../opentelemetry-client-ocurl-lwt.0.90/opam       | 48 ++++++++++++++++++++
 .../opentelemetry-client-ocurl.0.90/opam           | 45 +++++++++++++++++++
 .../opentelemetry-client.0.90/opam                 | 39 +++++++++++++++++
 .../opentelemetry-cohttp-lwt.0.90/opam             | 43 ++++++++++++++++++
 .../opentelemetry-logs.0.90/opam                   | 43 ++++++++++++++++++
 .../opentelemetry-lwt/opentelemetry-lwt.0.90/opam  | 43 ++++++++++++++++++
 packages/opentelemetry/opentelemetry.0.90/opam     | 51 ++++++++++++++++++++++
 9 files changed, 408 insertions(+)
 create mode 100644 packages/opentelemetry-client-cohttp-eio/opentelemetry-client-cohttp-eio.0.90/opam
 create mode 100644 packages/opentelemetry-client-cohttp-lwt/opentelemetry-client-cohttp-lwt.0.90/opam
 create mode 100644 packages/opentelemetry-client-ocurl-lwt/opentelemetry-client-ocurl-lwt.0.90/opam
 create mode 100644 packages/opentelemetry-client-ocurl/opentelemetry-client-ocurl.0.90/opam
 create mode 100644 packages/opentelemetry-client/opentelemetry-client.0.90/opam
 create mode 100644 packages/opentelemetry-cohttp-lwt/opentelemetry-cohttp-lwt.0.90/opam
 create mode 100644 packages/opentelemetry-logs/opentelemetry-logs.0.90/opam
 create mode 100644 packages/opentelemetry-lwt/opentelemetry-lwt.0.90/opam
 create mode 100644 packages/opentelemetry/opentelemetry.0.90/opam

(from ocaml/opam:fedora-43-ocaml-5.4@sha256:ee186ded9e345e55d4230a8edfeb84c47deaa7f722133ccaecbfc2b88745b5d4)
2026-04-02 19:58.30 ---> using "d25c992ad2ea4d7343b2e5524c8d01191af3bcc5617b83e1c8534cf674048258" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-02 19:58.30 ---> using "8def26fdcc7bf5f4b96c6b4fa181245aada67baeae0cc229d5586e7a5b12d1e8" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-02 19:58.30 ---> using "fcf1d2a828315e8435161875d3f668101096bdc88d61c06c3e72af092924223a" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=fedora os-version=43
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.1
2026-04-02 19:58.30 ---> using "cf8ffe05ba2fb593d326b1217bcb66b16bc379893272da73af88f533ef4bc1d8" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-02 19:58.30 ---> using "4c8657d5bf21f18aedc940953a667dc75df987e6055e340d2c0cb7e87bd7a489" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-02 19:58.31 ---> using "102ea2dbb97ba8485c6f0e1ce9e09a083a9fc6831d838fbda744c89974471b08" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-02 19:58.31 ---> using "8d4da3b36a18662fa42ff53faad03cd2abff4e5275d37f693fc4d9f8252b463f" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
-  Fedora 43 - x86_64 - Updates           100% |  24.5 KiB/s |  15.6 KiB |  00m01s
-  Fedora 43 openh264 (From Cisco) - x86_ 100% |   8.9 KiB/s | 986.0   B |  00m00s
- Repositories loaded.
- Metadata cache created.
2026-04-02 19:58.31 ---> using "7f00d257d7862717cc4c58307715c578e9acf844a835d5f8b0606480da4a8650" from cache

/home/opam: (run (shell "opam pin add -k version -yn opentelemetry-client-ocurl-lwt.0.90 0.90"))
opentelemetry-client-ocurl-lwt is now pinned to version 0.90
2026-04-02 19:58.31 ---> using "043fa7c0bce712c258e1c2b111bb23c34bc400ad9a9bf21b95d0b3415acd2202" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall opentelemetry-client-ocurl-lwt.0.90;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"fedora-43\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'opentelemetry-client-ocurl-lwt.0.90' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
opentelemetry-client-ocurl-lwt.0.90 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 33 packages
  - install ambient-context                0.2           [required by ambient-context-lwt, opentelemetry]
  - install ambient-context-lwt            0.2           [required by opentelemetry-client-ocurl-lwt]
  - install base-bytes                     base          [required by ocplib-endian]
  - install base64                         3.5.2         [required by pbrt_yojson]
  - install conf-libcurl                   2             [required by ocurl]
  - install cppo                           1.8.0         [required by lwt]
  - install csexp                          1.5.2         [required by dune-configurator]
  - install dune                           3.22.0        [required by opentelemetry-client-ocurl-lwt]
  - install dune-configurator              3.22.0        [required by lwt]
  - install ezcurl                         0.3           [required by ezcurl-lwt]
  - install ezcurl-lwt                     0.3           [required by opentelemetry-client-ocurl-lwt]
  - install hmap                           0.8.1         [required by opentelemetry]
  - install lwt                            5.9.2         [required by opentelemetry-client-ocurl-lwt]
  - install lwt_ppx                        5.9.3         [required by opentelemetry-client-ocurl-lwt]
  - install mtime                          2.1.0         [required by opentelemetry-client-ocurl-lwt]
  - install ocaml-compiler-libs            v0.17.0       [required by ppxlib]
  - install ocamlbuild                     0.16.1        [required by mtime]
  - install ocamlfind                      1.9.8         [required by mtime]
  - install ocplib-endian                  1.2           [required by lwt]
  - install ocurl                          0.9.2         [required by opentelemetry-client-ocurl-lwt]
  - install opentelemetry                  0.90          [required by opentelemetry-client-ocurl-lwt]
  - install opentelemetry-client           0.90          [required by opentelemetry-client-ocurl-lwt]
  - install opentelemetry-client-ocurl-lwt 0.90 (pinned)
  - install pbrt                           4.1           [required by opentelemetry]
  - install pbrt_yojson                    4.1           [required by opentelemetry]
  - install ppx_derivers                   1.2.1         [required by ppxlib]
  - install ppxlib                         0.38.0        [required by lwt_ppx]
  - install ptime                          1.2.0         [required by opentelemetry]
  - install sexplib0                       v0.17.0       [required by ppxlib]
  - install stdlib-shims                   0.3.0         [required by pbrt]
  - install thread-local-storage           0.2           [required by opentelemetry, opentelemetry-client]
  - install topkg                          1.1.1         [required by mtime]
  - install yojson                         3.0.0         [required by pbrt_yojson]

The following system packages will first need to be installed:
    libcurl-devel

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
  2. Display the recommended yum command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/sbin/sudo "yum" "install" "-y" "libcurl-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package                     Arch   Version         Repository      Size
- Upgrading:
-  krb5-libs                  x86_64 1.22.2-3.fc43   updates      2.3 MiB
-    replacing krb5-libs      x86_64 1.22.2-2.fc43   updates      2.3 MiB
-  zlib-ng-compat             x86_64 2.3.3-2.fc43    updates    161.7 KiB
-    replacing zlib-ng-compat x86_64 2.3.3-1.fc43    updates    161.7 KiB
- Installing:
-  libcurl-devel              x86_64 8.15.0-5.fc43   updates      1.3 MiB
- Installing dependencies:
-  brotli                     x86_64 1.2.0-1.fc43    updates     33.6 KiB
-  brotli-devel               x86_64 1.2.0-1.fc43    updates     65.9 KiB
-  cmake-filesystem           x86_64 3.31.11-1.fc43  updates      0.0   B
-  keyutils-libs-devel        x86_64 1.6.3-6.fc43    fedora      48.2 KiB
-  krb5-devel                 x86_64 1.22.2-3.fc43   updates    709.9 KiB
-  libcom_err-devel           x86_64 1.47.3-2.fc43   fedora      16.7 KiB
-  libidn2-devel              x86_64 2.3.8-2.fc43    fedora     149.1 KiB
-  libkadm5                   x86_64 1.22.2-3.fc43   updates    214.0 KiB
-  libnghttp2-devel           x86_64 1.66.0-2.fc43   fedora     286.3 KiB
-  libpsl-devel               x86_64 0.21.5-6.fc43   fedora     110.2 KiB
-  libselinux-devel           x86_64 3.9-5.fc43      fedora     127.3 KiB
-  libsepol-devel             x86_64 3.9-2.fc43      fedora     121.4 KiB
-  libssh-devel               x86_64 0.11.4-1.fc43   updates    178.0 KiB
-  libverto-devel             x86_64 0.3.2-11.fc43   fedora      25.7 KiB
-  openssl-devel              x86_64 1:3.5.4-2.fc43  updates      4.6 MiB
-  pcre2-devel                x86_64 10.47-1.fc43    updates      2.1 MiB
-  pcre2-utf16                x86_64 10.47-1.fc43    updates    639.2 KiB
-  pcre2-utf32                x86_64 10.47-1.fc43    updates    611.1 KiB
-  publicsuffix-list          noarch 20260116-1.fc43 updates    342.2 KiB
-  zlib-ng-compat-devel       x86_64 2.3.3-2.fc43    updates    107.0 KiB
- 
- Transaction Summary:
-  Installing:        21 packages
-  Upgrading:          2 packages
-  Replacing:          2 packages
- 
- Total size of inbound packages is 7 MiB. Need to download 7 MiB.
- After this operation, 12 MiB extra will be used (install 14 MiB, remove 2 MiB).
- [ 1/23] brotli-0:1.2.0-1.fc43.x86_64    100% | 330.6 KiB/s |  23.8 KiB |  00m00s
- [ 2/23] brotli-devel-0:1.2.0-1.fc43.x86 100% | 458.0 KiB/s |  34.4 KiB |  00m00s
- [ 3/23] libkadm5-0:1.22.2-3.fc43.x86_64 100% |   2.1 MiB/s |  76.3 KiB |  00m00s
- [ 4/23] krb5-devel-0:1.22.2-3.fc43.x86_ 100% |   3.1 MiB/s | 142.5 KiB |  00m00s
- [ 5/23] libssh-devel-0:0.11.4-1.fc43.x8 100% |   2.3 MiB/s |  41.9 KiB |  00m00s
- [ 6/23] libcurl-devel-0:8.15.0-5.fc43.x 100% |   6.6 MiB/s | 919.7 KiB |  00m00s
- [ 7/23] zlib-ng-compat-devel-0:2.3.3-2. 100% |   2.2 MiB/s |  37.8 KiB |  00m00s
- [ 8/23] libidn2-devel-0:2.3.8-2.fc43.x8 100% |   1.7 MiB/s |  64.0 KiB |  00m00s
- [ 9/23] libpsl-devel-0:0.21.5-6.fc43.x8 100% |   5.4 MiB/s |  33.0 KiB |  00m00s
- [10/23] libnghttp2-devel-0:1.66.0-2.fc4 100% |   1.4 MiB/s |  54.4 KiB |  00m00s
- [11/23] libcom_err-devel-0:1.47.3-2.fc4 100% |   2.7 MiB/s |  16.6 KiB |  00m00s
- [12/23] libselinux-devel-0:3.9-5.fc43.x 100% |   5.9 MiB/s | 152.1 KiB |  00m00s
- [13/23] libsepol-devel-0:3.9-2.fc43.x86 100% |   6.7 MiB/s |  48.4 KiB |  00m00s
- [14/23] openssl-devel-1:3.5.4-2.fc43.x8 100% |  26.0 MiB/s |   3.0 MiB |  00m00s
- [15/23] keyutils-libs-devel-0:1.6.3-6.f 100% |   1.1 MiB/s |  59.8 KiB |  00m00s
- [16/23] libverto-devel-0:0.3.2-11.fc43. 100% |   1.4 MiB/s |  14.3 KiB |  00m00s
- [17/23] pcre2-utf16-0:10.47-1.fc43.x86_ 100% |   6.0 MiB/s | 246.1 KiB |  00m00s
- [18/23] pcre2-devel-0:10.47-1.fc43.x86_ 100% |  11.2 MiB/s | 550.9 KiB |  00m00s
- [19/23] pcre2-utf32-0:10.47-1.fc43.x86_ 100% |   4.3 MiB/s | 232.9 KiB |  00m00s
- [20/23] publicsuffix-list-0:20260116-1. 100% |   5.3 MiB/s |  91.7 KiB |  00m00s
- [21/23] cmake-filesystem-0:3.31.11-1.fc 100% | 955.1 KiB/s |  13.4 KiB |  00m00s
- [22/23] zlib-ng-compat-0:2.3.3-2.fc43.x 100% |   5.4 MiB/s |  88.7 KiB |  00m00s
- [23/23] krb5-libs-0:1.22.2-3.fc43.x86_6 100% |   9.3 MiB/s | 771.0 KiB |  00m00s
- --------------------------------------------------------------------------------
- [23/23] Total                           100% |   6.7 MiB/s |   6.6 MiB |  00m01s
- Running transaction
- [ 1/27] Verify package files            100% | 884.0   B/s |  23.0   B |  00m00s
- [ 2/27] Prepare transaction             100% | 257.0   B/s |  25.0   B |  00m00s
- [ 3/27] Upgrading krb5-libs-0:1.22.2-3. 100% | 179.8 MiB/s |   2.3 MiB |  00m00s
- [ 4/27] Installing cmake-filesystem-0:3 100% |   1.9 MiB/s |   7.6 KiB |  00m00s
- [ 5/27] Installing libssh-devel-0:0.11. 100% |  88.2 MiB/s | 180.6 KiB |  00m00s
- [ 6/27] Installing libkadm5-0:1.22.2-3. 100% | 105.5 MiB/s | 216.0 KiB |  00m00s
- [ 7/27] Upgrading zlib-ng-compat-0:2.3. 100% | 158.7 MiB/s | 162.6 KiB |  00m00s
- [ 8/27] Installing zlib-ng-compat-devel 100% | 106.0 MiB/s | 108.6 KiB |  00m00s
- [ 9/27] Installing publicsuffix-list-0: 100% | 167.6 MiB/s | 343.2 KiB |  00m00s
- [10/27] Installing libpsl-devel-0:0.21. 100% | 110.9 MiB/s | 113.5 KiB |  00m00s
- [11/27] Installing pcre2-utf32-0:10.47- 100% | 199.2 MiB/s | 611.9 KiB |  00m00s
- [12/27] Installing pcre2-utf16-0:10.47- 100% | 208.3 MiB/s | 640.0 KiB |  00m00s
- [13/27] Installing pcre2-devel-0:10.47- 100% | 124.7 MiB/s |   2.1 MiB |  00m00s
- [14/27] Installing libverto-devel-0:0.3 100% |  25.7 MiB/s |  26.4 KiB |  00m00s
- [15/27] Installing libsepol-devel-0:3.9 100% |  25.2 MiB/s | 128.9 KiB |  00m00s
- [16/27] Installing libselinux-devel-0:3 100% |  52.8 MiB/s | 162.1 KiB |  00m00s
- [17/27] Installing libcom_err-devel-0:1 100% |   1.3 MiB/s |  18.3 KiB |  00m00s
- [18/27] Installing keyutils-libs-devel- 100% |  53.9 MiB/s |  55.2 KiB |  00m00s
- [19/27] Installing krb5-devel-0:1.22.2- 100% |  37.0 MiB/s | 719.2 KiB |  00m00s
- [20/27] Installing libnghttp2-devel-0:1 100% | 280.7 MiB/s | 287.4 KiB |  00m00s
- [21/27] Installing libidn2-devel-0:2.3. 100% |  19.1 MiB/s | 156.7 KiB |  00m00s
- [22/27] Installing openssl-devel-1:3.5. 100% | 136.5 MiB/s |   5.6 MiB |  00m00s
- [23/27] Installing brotli-0:1.2.0-1.fc4 100% |   2.6 MiB/s |  34.4 KiB |  00m00s
- [24/27] Installing brotli-devel-0:1.2.0 100% |  22.3 MiB/s |  68.4 KiB |  00m00s
- [25/27] Installing libcurl-devel-0:8.15 100% |  74.6 MiB/s |   1.4 MiB |  00m00s
- [26/27] Removing zlib-ng-compat-0:2.3.3 100% |   4.9 KiB/s |   5.0   B |  00m00s
- [27/27] Removing krb5-libs-0:1.22.2-2.f 100% |   1.1 KiB/s |  65.0   B |  00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "libcurl-devel"
- libcurl-devel-8.15.0-5.fc43.x86_64

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ambient-context.0.2, ambient-context-lwt.0.2  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-libcurl.2
-> retrieved dune.3.22.0, dune-configurator.3.22.0  (cached)
-> retrieved ezcurl.0.3, ezcurl-lwt.0.3  (cached)
-> retrieved hmap.0.8.1  (cached)
-> retrieved lwt.5.9.2  (cached)
-> retrieved lwt_ppx.5.9.3  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ocurl.0.9.2  (cached)
-> retrieved opentelemetry.0.90, opentelemetry-client.0.90, opentelemetry-client-ocurl-lwt.0.90  (cached)
-> retrieved pbrt.4.1, pbrt_yojson.4.1  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved thread-local-storage.0.2  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed mtime.2.1.0
-> installed ptime.1.2.0
-> installed dune.3.22.0
-> installed ppx_derivers.1.2.1
-> installed base64.3.5.2
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed thread-local-storage.0.2
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed pbrt_yojson.4.1
-> installed pbrt.4.1
-> installed ambient-context.0.2
-> installed dune-configurator.3.22.0
-> installed lwt.5.9.2
-> installed ambient-context-lwt.0.2
-> installed opentelemetry.0.90
-> installed opentelemetry-client.0.90
-> installed ppxlib.0.38.0
-> installed lwt_ppx.5.9.3
-> installed ocurl.0.9.2
-> installed ezcurl.0.3
-> installed ezcurl-lwt.0.3
-> installed opentelemetry-client-ocurl-lwt.0.90
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-02 19:59.06 ---> saved as "5ddacf41b3e8b594fb6bfaf6bb274a54e53b0872526ee57885508afe28b142a3"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test opentelemetry-client-ocurl-lwt.0.90) || true"))
The following actions will be performed:
=== recompile 6 packages
  - recompile ambient-context-lwt            0.2                              [uses lwt]
  - recompile ezcurl                         0.3                              [uses ocurl]
  - recompile ezcurl-lwt                     0.3                              [uses lwt]
  - recompile opentelemetry                  0.90                             [uses lwt]
  - recompile opentelemetry-client           0.90                             [uses opentelemetry]
  - recompile opentelemetry-client-ocurl-lwt 0.90 (pinned)
=== upgrade 3 packages
  - upgrade   lwt                            5.9.2 to 6.1.1                   [required by opentelemetry-client-ocurl-lwt]
  - upgrade   lwt_ppx                        5.9.3 to 6.1.0                   [required by opentelemetry-client-ocurl-lwt]
  - upgrade   ocurl                          0.9.2 to transition (deprecated) [required by opentelemetry-client-ocurl-lwt]
=== install 53 packages
  - install   alcotest                       1.9.1                            [required by opentelemetry-client-ocurl-lwt]
  - install   angstrom                       0.16.1                           [required by uri]
  - install   asn1-combinators               0.3.2                            [required by x509]
  - install   astring                        0.8.5                            [required by alcotest]
  - install   base                           v0.17.3                          [required by ppx_sexp_conv]
  - install   bigstringaf                    0.10.0                           [required by angstrom]
  - install   bos                            0.2.1                            [required by ca-certs]
  - install   ca-certs                       1.0.1                            [required by conduit-lwt-unix]
  - install   cmdliner                       2.1.0                            [required by alcotest, cohttp-lwt-unix]
  - install   cohttp                         6.2.1                            [required by cohttp-lwt-unix]
  - install   cohttp-lwt                     6.2.1                            [required by cohttp-lwt-unix]
  - install   cohttp-lwt-unix                6.2.1                            [required by opentelemetry-client-ocurl-lwt]
  - install   conduit                        8.0.0                            [required by conduit-lwt]
  - install   conduit-lwt                    8.0.0                            [required by cohttp-lwt-unix]
  - install   conduit-lwt-unix               8.0.0                            [required by cohttp-lwt-unix]
  - install   conf-gmp                       5                                [required by conf-gmp-powm-sec, zarith]
  - install   conf-gmp-powm-sec              4                                [required by mirage-crypto-pk]
  - install   conf-pkg-config                4                                [required by zarith]
  - install   containers                     3.18                             [required by opentelemetry-client-ocurl-lwt]
  - install   curl                           0.10.0                           [required by ocurl]
  - install   curl_lwt                       0.10.0                           [required by ocurl]
  - install   digestif                       1.3.0                            [required by ca-certs]
  - install   domain-name                    0.5.0                            [required by ipaddr]
  - install   duration                       0.2.1                            [required by mirage-crypto-rng]
  - install   either                         1.0.0                            [required by containers]
  - install   eqaf                           0.10                             [required by digestif, mirage-crypto]
  - install   fmt                            0.11.0                           [required by alcotest, cohttp-lwt-unix]
  - install   fpath                          0.7.3                            [required by ca-certs]
  - install   gmap                           0.3.0                            [required by x509]
  - install   http                           6.2.1                            [required by cohttp-lwt-unix]
  - install   ipaddr                         5.6.2                            [required by cohttp-lwt, cohttp, conduit-lwt-unix]
  - install   ipaddr-sexp                    5.6.2                            [required by conduit-lwt-unix]
  - install   kdf                            1.0.0                            [required by x509]
  - install   logs                           0.10.0                           [required by opentelemetry-client-ocurl-lwt]
  - install   macaddr                        5.6.2                            [required by ipaddr]
  - install   magic-mime                     1.3.1                            [required by cohttp-lwt-unix]
  - install   mirage-crypto                  2.1.0                            [required by ca-certs]
  - install   mirage-crypto-ec               2.1.0                            [required by x509]
  - install   mirage-crypto-pk               2.1.0                            [required by x509]
  - install   mirage-crypto-rng              2.1.0                            [required by x509]
  - install   ocaml-syntax-shims             1.0.0                            [required by alcotest]
  - install   ocaml_intrinsics_kernel        v0.17.1                          [required by base]
  - install   ohex                           0.2.0                            [required by ca-certs]
  - install   ppx_sexp_conv                  v0.17.1                          [required by cohttp-lwt-unix]
  - install   ppxlib_jane                    v0.17.4                          [required by ppx_sexp_conv]
  - install   re                             1.14.0                           [required by alcotest]
  - install   rresult                        0.7.0                            [required by bos]
  - install   stringext                      1.6.0                            [required by cohttp]
  - install   uri                            4.4.0                            [required by cohttp-lwt, cohttp, conduit-lwt-unix]
  - install   uri-sexp                       4.4.0                            [required by cohttp]
  - install   uutf                           1.0.4                            [required by alcotest]
  - install   x509                           1.0.6                            [required by ca-certs]
  - install   zarith                         1.14                             [required by mirage-crypto-pk]

The following system packages will first need to be installed:
    gmp-devel

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
  2. Display the recommended yum command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/sbin/sudo "yum" "install" "-y" "gmp-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package    Arch   Version        Repository      Size
- Installing:
-  gmp-devel x86_64 1:6.3.0-4.fc43 fedora     352.3 KiB
- Installing dependencies:
-  gmp-c++   x86_64 1:6.3.0-4.fc43 fedora      27.6 KiB
- 
- Transaction Summary:
-  Installing:         2 packages
- 
- Total size of inbound packages is 193 KiB. Need to download 193 KiB.
- After this operation, 380 KiB extra will be used (install 380 KiB, remove 0 B).
- [1/2] gmp-c++-1:6.3.0-4.fc43.x86_64     100% | 525.8 KiB/s |  18.4 KiB |  00m00s
- [2/2] gmp-devel-1:6.3.0-4.fc43.x86_64   100% |   1.9 MiB/s | 174.3 KiB |  00m00s
- --------------------------------------------------------------------------------
- [2/2] Total                             100% | 395.0 KiB/s | 192.7 KiB |  00m00s
- Running transaction
- [1/4] Verify package files              100% |   0.0   B/s |   2.0   B |  00m00s
- [2/4] Prepare transaction               100% |  80.0   B/s |   2.0   B |  00m00s
- [3/4] Installing gmp-c++-1:6.3.0-4.fc43 100% |  13.9 MiB/s |  28.5 KiB |  00m00s
- [4/4] Installing gmp-devel-1:6.3.0-4.fc 100% |  10.5 MiB/s | 354.1 KiB |  00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "gmp-devel"
- gmp-devel-6.3.0-4.fc43.x86_64

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved ambient-context-lwt.0.2  (https://opam.ocaml.org/cache)
-> retrieved angstrom.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved asn1-combinators.0.3.2  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved base.v0.17.3  (https://opam.ocaml.org/cache)
-> installed asn1-combinators.0.3.2
-> retrieved bigstringaf.0.10.0  (https://opam.ocaml.org/cache)
-> retrieved bos.0.2.1  (https://opam.ocaml.org/cache)
-> retrieved ca-certs.1.0.1  (https://opam.ocaml.org/cache)
-> installed bigstringaf.0.10.0
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved cohttp.6.2.1, cohttp-lwt.6.2.1, cohttp-lwt-unix.6.2.1, http.6.2.1  (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0  (https://opam.ocaml.org/cache)
-> retrieved conf-gmp.5  (https://opam.ocaml.org/cache)
-> retrieved conf-gmp-powm-sec.4  (https://opam.ocaml.org/cache)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> installed conf-gmp-powm-sec.4
-> installed http.6.2.1
-> retrieved containers.3.18  (https://opam.ocaml.org/cache)
-> retrieved curl.0.10.0, curl_lwt.0.10.0, ocurl.transition  (https://opam.ocaml.org/cache)
-> retrieved digestif.1.3.0  (https://opam.ocaml.org/cache)
-> retrieved domain-name.0.5.0  (https://opam.ocaml.org/cache)
-> retrieved duration.0.2.1  (https://opam.ocaml.org/cache)
-> retrieved either.1.0.0  (https://opam.ocaml.org/cache)
-> installed domain-name.0.5.0
-> installed duration.0.2.1
-> retrieved eqaf.0.10  (https://opam.ocaml.org/cache)
-> installed either.1.0.0
-> retrieved ezcurl.0.3, ezcurl-lwt.0.3  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved fpath.0.7.3  (https://opam.ocaml.org/cache)
-> retrieved gmap.0.3.0  (https://opam.ocaml.org/cache)
-> installed eqaf.0.10
-> retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2  (https://opam.ocaml.org/cache)
-> retrieved kdf.1.0.0  (https://opam.ocaml.org/cache)
-> installed gmap.0.3.0
-> retrieved logs.0.10.0  (https://opam.ocaml.org/cache)
-> installed macaddr.5.6.2
-> retrieved lwt.6.1.1  (https://opam.ocaml.org/cache)
-> installed cmdliner.2.1.0
-> installed containers.3.18
-> installed digestif.1.3.0
-> installed fpath.0.7.3
-> installed ipaddr.5.6.2
-> retrieved lwt_ppx.6.1.0  (https://opam.ocaml.org/cache)
-> retrieved magic-mime.1.3.1  (https://opam.ocaml.org/cache)
-> retrieved mirage-crypto.2.1.0, mirage-crypto-ec.2.1.0, mirage-crypto-pk.2.1.0, mirage-crypto-rng.2.1.0  (https://opam.ocaml.org/cache)
-> installed fmt.0.11.0
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> installed magic-mime.1.3.1
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (https://opam.ocaml.org/cache)
-> retrieved ohex.0.2.0  (https://opam.ocaml.org/cache)
-> installed ohex.0.2.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> retrieved opentelemetry.0.90, opentelemetry-client.0.90, opentelemetry-client-ocurl-lwt.0.90  (https://github.com/ocaml-tracing/ocaml-opentelemetry/releases/download/v0.90/opentelemetry-0.90.tbz)
-> retrieved ppx_sexp_conv.v0.17.1  (https://opam.ocaml.org/cache)
-> retrieved ppxlib_jane.v0.17.4  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved rresult.0.7.0  (https://opam.ocaml.org/cache)
-> retrieved stringext.1.6.0  (https://opam.ocaml.org/cache)
-> installed angstrom.0.16.1
-> installed stringext.1.6.0
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (https://opam.ocaml.org/cache)
-> installed mirage-crypto.2.1.0
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed rresult.0.7.0
-> installed ppxlib_jane.v0.17.4
-> retrieved x509.1.0.6  (https://opam.ocaml.org/cache)
-> installed kdf.1.0.0
-> removed   opentelemetry-client-ocurl-lwt.0.90
-> removed   ambient-context-lwt.0.2
-> removed   ezcurl-lwt.0.3
-> removed   ezcurl.0.3
-> removed   ocurl.0.9.2
-> removed   lwt_ppx.5.9.3
-> removed   opentelemetry-client.0.90
-> removed   opentelemetry.0.90
-> removed   lwt.5.9.2
-> installed re.1.14.0
-> retrieved zarith.1.14  (https://opam.ocaml.org/cache)
-> installed uutf.1.0.4
-> installed uri.4.4.0
-> installed alcotest.1.9.1
-> installed curl.0.10.0
-> installed lwt.6.1.1
-> installed ambient-context-lwt.0.2
-> installed curl_lwt.0.10.0
-> installed ocurl.transition
-> installed zarith.1.14
-> installed base.v0.17.3
-> installed ezcurl.0.3
-> installed ezcurl-lwt.0.3
-> installed logs.0.10.0
-> installed opentelemetry.0.90
-> installed mirage-crypto-rng.2.1.0
-> installed lwt_ppx.6.1.0
-> installed mirage-crypto-pk.2.1.0
-> installed opentelemetry-client.0.90
-> installed ppx_sexp_conv.v0.17.1
-> installed bos.0.2.1
-> installed ipaddr-sexp.5.6.2
-> installed uri-sexp.4.4.0
-> installed mirage-crypto-ec.2.1.0
-> installed conduit.8.0.0
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed cohttp.6.2.1
-> installed conduit-lwt.8.0.0
-> installed cohttp-lwt.6.2.1
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt-unix.6.2.1
-> installed opentelemetry-client-ocurl-lwt.0.90
Done.

<><> ocurl.transition installed successfully ><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
=> ocurl has been renamed and the ocurl package is now a transition package. Use the curl package instead.
# To update the current shell environment, run: eval $(opam env)
2026-04-02 20:00.19 ---> saved as "4e0de11fa727ab5f4ed27021316f46bab1b9f35053d96197d35dec59998ce2c3"

/home/opam: (run (shell  "opam reinstall --with-test --verbose opentelemetry-client-ocurl-lwt.0.90;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"fedora-43\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'opentelemetry-client-ocurl-lwt.0.90' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile opentelemetry-client-ocurl-lwt 0.90 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [opentelemetry-client-ocurl-lwt: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "opentelemetry-client-ocurl-lwt" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/opentelemetry-client-ocurl-lwt.0.90)
- (cd _build/default/tests/ocurl-lwt && ./test_urls.exe)
- config1: { debug=false; log_level=info; sdk_disabled=false; self_trace=false;
-           self_metrics=false; url_traces="http://localhost:4318/v1/traces";
-           url_metrics="http://localhost:4318/v1/metrics";
-           url_logs="http://localhost:4318/v1/logs"; headers=[];
-           headers_traces=[]; headers_metrics=[]; headers_logs=[];
-           protocol=http/protobuf; timeout_ms=10000; timeout_traces_ms=10000;
-           timeout_metrics_ms=10000; timeout_logs_ms=10000; traces={batch=400;
-           timeout=2s}; metrics={batch=200; timeout=2s}; logs={batch=400;
-           timeout=2s}; http_concurrency_level=None; retry_max_attempts=3;
-           retry_initial_delay_ms=100; retry_max_delay_ms=5000;
-           retry_backoff_multiplier=2.0 }
- config2: { debug=false; log_level=info; sdk_disabled=false; self_trace=false;
-           self_metrics=false; url_traces="http://example.com:1234/v1/traces";
-           url_metrics="http://example.com:1234/v1/metrics";
-           url_logs="http://example.com:1234/v1/logs"; headers=[];
-           headers_traces=[]; headers_metrics=[]; headers_logs=[];
-           protocol=http/protobuf; timeout_ms=10000; timeout_traces_ms=10000;
-           timeout_metrics_ms=10000; timeout_logs_ms=10000; traces={batch=400;
-           timeout=2s}; metrics={batch=200; timeout=2s}; logs={batch=400;
-           timeout=2s}; http_concurrency_level=None; retry_max_attempts=3;
-           retry_initial_delay_ms=100; retry_max_delay_ms=5000;
-           retry_backoff_multiplier=2.0 }
- config3: { debug=false; log_level=info; sdk_disabled=false; self_trace=false;
-           self_metrics=false; url_traces="http://example.com/traces";
-           url_metrics="http://example.com/metrics";
-           url_logs="http://example.com/logs"; headers=[]; headers_traces=[];
-           headers_metrics=[]; headers_logs=[]; protocol=http/protobuf;
-           timeout_ms=10000; timeout_traces_ms=10000;
-           timeout_metrics_ms=10000; timeout_logs_ms=10000; traces={batch=400;
-           timeout=2s}; metrics={batch=200; timeout=2s}; logs={batch=400;
-           timeout=2s}; http_concurrency_level=None; retry_max_attempts=3;
-           retry_initial_delay_ms=100; retry_max_delay_ms=5000;
-           retry_backoff_multiplier=2.0 }
- All URL tests passed
- (cd _build/default/tests/client_e2e && ./test_ocurl_lwt_client_e2e.exe)
- Testing `Collector integration tests'.
- This run has ID `ALVXIE4Q'.
- 
-   [OK]          'test: emit1_ocurl_lwt -j 1 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 2 --batch-metrics 2 --batch-logs 2'              0   loop.outer spans....
-   [OK]          'test: emit1_ocurl_lwt -j 1 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 2 --batch-metrics 2 --batch-logs 2'              1   loop.inner spans....
-   [OK]          'test: emit1_ocurl_lwt -j 1 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 2 --batch-metrics 2 --batch-logs 2'              2   alloc spans....
-   [OK]          'test: emit1_ocurl_lwt -j 1 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 2 --batch-metrics 2 --batch-logs 2'              3   num-sleep metrics....
-   [OK]          'test: emit1_ocurl_lwt -j 1 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 2 --batch-metrics 2 --batch-logs 2'              4   logs....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          0   loop.outer spans....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          1   loop.inner spans....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          2   alloc spans....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          3   num-sleep metrics....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          4   logs....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 5 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          0   loop.outer spans....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 5 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          1   loop.inner spans....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 5 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          2   alloc spans....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 5 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          3   num-sleep metrics....
-   [OK]          'test: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 5 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400'          4   logs....
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/opentelemetry-client-ocurl-lwt.0.90/_build/default/tests/client_e2e/_build/_tests/Collector integration tests'.
- Test Successful in 0.001s. 15 tests run.
- starting server on http://localhost:4359
- running command: emit1_ocurl_lwt -j 1 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 2 --batch-metrics 2 --batch-logs 2
- sleep outer: 2.000s, sleep inner: 0.100s,
-   config: { debug=false; log_level=info; sdk_disabled=false; self_trace=true;
-            self_metrics=false; url_traces="http://localhost:4359/v1/traces";
-            url_metrics="http://localhost:4359/v1/metrics";
-            url_logs="http://localhost:4359/v1/logs"; headers=[];
-            headers_traces=[]; headers_metrics=[]; headers_logs=[];
-            protocol=http/protobuf; timeout_ms=10000; timeout_traces_ms=10000;
-            timeout_metrics_ms=10000; timeout_logs_ms=10000; traces={batch=2;
-            timeout=2s}; metrics={batch=2; timeout=2s}; logs={batch=2;
-            timeout=2s}; http_concurrency_level=None; retry_max_attempts=3;
-            retry_initial_delay_ms=100; retry_max_delay_ms=5000;
-            retry_backoff_multiplier=2.0 }
- [otel:info] opentelemetry: ocurl-lwt exporter installed
- run 1 job(s)
- [otel:info] opentelemetry: SDK removed
- [otel:info] otel: trace provider removed
- [otel:info] otel: meter provider removed
- [otel:info] otel: log provider removed
- 
- done. 3 spans in 2.1063s (1.4243/s)
- starting server on http://localhost:4359
- running command: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 1 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400
- sleep outer: 2.000s, sleep inner: 0.100s,
-   config: { debug=false; log_level=info; sdk_disabled=false; self_trace=true;
-            self_metrics=false; url_traces="http://localhost:4359/v1/traces";
-            url_metrics="http://localhost:4359/v1/metrics";
-            url_logs="http://localhost:4359/v1/logs"; headers=[];
-            headers_traces=[]; headers_metrics=[]; headers_logs=[];
-            protocol=http/protobuf; timeout_ms=10000; timeout_traces_ms=10000;
-            timeout_metrics_ms=10000; timeout_logs_ms=10000;
-            traces={batch=400; timeout=2s}; metrics={batch=3; timeout=2s};
-            logs={batch=400; timeout=2s}; http_concurrency_level=None;
-            retry_max_attempts=3; retry_initial_delay_ms=100;
-            retry_max_delay_ms=5000; retry_backoff_multiplier=2.0 }
- [otel:info] opentelemetry: ocurl-lwt exporter installed
- run 3 job(s)
- [otel:info] opentelemetry: SDK removed
- [otel:info] otel: trace provider removed
- [otel:info] otel: meter provider removed
- [otel:info] otel: log provider removed
- 
- done. 9 spans in 6.1145s (1.4719/s)
- starting server on http://localhost:4359
- running command: emit1_ocurl_lwt -j 3 --procs 1 --url http://localhost:4359 -n 5 --iterations 1 --batch-traces 400 --batch-metrics 3 --batch-logs 400
- sleep outer: 2.000s, sleep inner: 0.100s,
-   config: { debug=false; log_level=info; sdk_disabled=false; self_trace=true;
-            self_metrics=false; url_traces="http://localhost:4359/v1/traces";
-            url_metrics="http://localhost:4359/v1/metrics";
-            url_logs="http://localhost:4359/v1/logs"; headers=[];
-            headers_traces=[]; headers_metrics=[]; headers_logs=[];
-            protocol=http/protobuf; timeout_ms=10000; timeout_traces_ms=10000;
-            timeout_metrics_ms=10000; timeout_logs_ms=10000;
-            traces={batch=400; timeout=2s}; metrics={batch=3; timeout=2s};
-            logs={batch=400; timeout=2s}; http_concurrency_level=None;
-            retry_max_attempts=3; retry_initial_delay_ms=100;
-            retry_max_delay_ms=5000; retry_backoff_multiplier=2.0 }
- [otel:info] opentelemetry: ocurl-lwt exporter installed
- run 3 job(s)
- [otel:info] opentelemetry: SDK removed
- [otel:info] otel: trace provider removed
- [otel:info] otel: meter provider removed
- [otel:info] otel: log provider removed
- 
- done. 45 spans in 30.1423s (1.4929/s)
-> compiled  opentelemetry-client-ocurl-lwt.0.90
-> removed   opentelemetry-client-ocurl-lwt.0.90
-> installed opentelemetry-client-ocurl-lwt.0.90
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-02 20:01.08 ---> saved as "b262f19482e01778383c52da4fc8d341d942d7c498616796b2deb845ffcb20ce"
Job succeeded
2026-04-02 20:01.12: Job succeeded