All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sentry.opentelemetry.SentryPropagatorProvider Maven / Gradle / Ivy

There is a newer version: 8.0.0-alpha.4
Show newest version
package io.sentry.opentelemetry;

import io.opentelemetry.context.propagation.TextMapPropagator;
import io.opentelemetry.sdk.autoconfigure.spi.ConfigProperties;
import io.opentelemetry.sdk.autoconfigure.spi.ConfigurablePropagatorProvider;

public final class SentryPropagatorProvider implements ConfigurablePropagatorProvider {
  @Override
  public TextMapPropagator getPropagator(ConfigProperties config) {
    return new SentryPropagator();
  }

  @Override
  public String getName() {
    return "sentry";
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy