#tracing #tracing-subscriber #ffi

tracing-ext-ffi-subscriber

Simple forwarding tracing subscriber for a FFI host profiler

3 unstable releases

0.2.0 Jul 19, 2023
0.1.1-pre1 Jun 1, 2022
0.1.0 May 24, 2022

#250 in Profiling

Download history 24/week @ 2024-02-14 71/week @ 2024-02-21 40/week @ 2024-02-28 11/week @ 2024-03-06 5/week @ 2024-03-13

61 downloads per month

MIT/Apache

24KB
275 lines

⏱️ tracing-ext-ffi-subscriber

Subscriber for passing spans from a rust library to a profiling tool in a host application via FFI.

Embark Embark Crates.io Docs dependency status Build status

A simple crate for passing spans generated by the tracing ecosystem to a C or C++ profiling system when Rust is integrated into an existing framework. To help with integration into other tools you can use the environment variable TRACING_FFI_RELATIVE_OUT_DIR to configure where the include file ends relative to the build output (OUT_DIR). For example, TRACING_FFI_RELATIVE_OUT_DIR = "../../../../../include" will normally lead to the files being generated in an include dir next to your Cargo.toml.

Example usage

#include <Profiling.h>
#include <tracing_ffi.h>
#include <myrustlib.h>

int main(int argc, const char* argv[]) {
    tracing_ffi_ReturnCode result = tracing_ffi_install_global_with_enable(
        profiling_begin_named_scope,
        profiling_end_named_scope,
        profiling_is_enabled,
    );

    if (result != tracing_ffi_ReturnCode_Success) {
        return (int)result;
    }

    myrustlib_execute(10, 20);

    profiling_write_file("profile.json");
}

You can of course also configure this from Rust code; and bypass the C-api. In that case, use subscriber::ExternFFISpanSubscriber directly, and install with your preferred tracing method.

Contribution

Contributor Covenant

We welcome community contributions to this project.

Please read our Contributor Guide for more information on how to get started. Please also read our Contributor Terms before you make any contributions.

Any contribution intentionally submitted for inclusion in an Embark Studios project, shall comply with the Rust standard licensing model (MIT OR Apache 2.0) and therefore be dual licensed as described below, without any additional terms or conditions:

License

This contribution is dual licensed under EITHER OF

at your option.

For clarity, "your" refers to Embark or any other licensee/user of the contribution.

Dependencies

~0.8–8MB
~38K SLoC