Skip to content

mathworks/OpenTelemetry-MATLAB

MATLAB Interface to OpenTelemetry

View OpenTelemetry-Matlab on File Exchange MATLABcodecov

MATLAB® interface to OpenTelemetry™, based on the OpenTelemetry Specification. OpenTelemetry is an observability framework for creating and managing telemetry data, such as traces, metrics, and logs. This data can then be sent to an observability back-end for monitoring, alerts, and analysis.

Status

  1. Tracing, metrics, and logs are all fully supported and tested on Windows®, Linux®, and macOS.
  2. On Linux, when running MATLAB R2025a or newer releases, the gRPC library used in the gRPC exporter in this package may conflict with the same library in MATLAB, causing MATLAB to crash. To avoid this issue, install otel-matlab-nogrpc.mltbx in version 1.10.2, which excludes the gRPC exporter.
  3. If you are using version 1.10.2 on Linux with MATLAB R2024a or older, you may run into an "Invalid MEX file" error due to an incompatible libstdc++ library. Define the environment variable LD_PRELOAD to point to the system libstdc++.so. For example, use the following command in a Bash shell on Ubuntu or Debian Linux.
export LD_PRELOAD="/lib/x86_64-linux-gnu/libstdc++.so.6"
  1. OpenTelemetry currently does not support non-ASCII characters. Defining names or attributes with non-ASCII characters will cause the telemetry data to become invalid and fail to export.

MathWorks Products (https://www.mathworks.com)

Requires MATLAB release R2022b or newer

3rd Party Products:

Installation

Installation instructions

Installing With Toolbox Package

  1. Under "Assets" of a release, download the toolbox package .mltbx file.
  2. Start MATLAB.
  3. In the Current Folder browser, navigate to the .mltbx file.
  4. Right click on the .mltbx file and select "Install".

Building From Source

Before proceeding, ensure that the below products are installed:

  1. Download, Build and install OpenTelemetry MATLAB
cd <opentelemetry-matlab-root>
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=<opentelemetry-matlab-installdir>
cmake --build build --config Release --target install

  1. Download OpenTelemetry Collector. You can just obtain a pre-built binary for your platform.

Getting Started

  1. Start OpenTelemetry Collector
otelcol --config <otelcol-config-yaml>
  1. Start MATLAB
  2. Add the OpenTelemetry MATLAB install directories to your MATLAB path
>> addpath <OpenTelemetry MATLAB installdir>

Examples

Tracing

  1. Create a default tracer provider and save it.
>> p = opentelemetry.sdk.trace.TracerProvider();
>> setTracerProvider(p);
  1. Start a span
>> tr = opentelemetry.trace.getTracer("My Tracer");
>> sp = tr.startSpan("My Span");
  1. End the span
>> sp.endSpan();
  1. If your collector is configured to display the data, you should see your span displayed.

Metrics

  1. Create a default meter provider and save it.
>> p = opentelemetry.sdk.metrics.MeterProvider();
>> setMeterProvider(p);
  1. Create a counter
>> m = opentelemetry.metrics.getMeter("My Meter");
>> c = m.createCounter("My Counter");
  1. Increment the counter
>> c.add(10);
  1. If your collector is configured to display the data, you should see your counter displayed after 1 minute.

Logs

  1. Create a default logger provider and save it.
>> p = opentelemetry.sdk.logs.LoggerProvider();
>> setLoggerProvider(p);
  1. Create a logger
>> l = opentelemetry.logs.getLogger("My Logger");
  1. Emit a log record with "info" level
>> info(l, "My Message");
  1. If your collector is configured to display the data, you should see your log record displayed.

For more examples, see the "examples" folder.

Automatic Instrumentation

See example here.

Help

To view documentation of individual function, type "help <function_name>". For example,

>> help opentelemetry.sdk.trace.TracerProvider

License

The license is available in the License file within this repository

Community Support

MATLAB Central

Copyright 2023-2024 The MathWorks, Inc.

About

MATLAB interface to OpenTelemetry

Resources

License

Contributing

Security policy

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •