com.microsoft.kiota.authentication.ObservabilityOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft-kiota-authentication-azure Show documentation
Show all versions of microsoft-kiota-authentication-azure Show documentation
Microsoft Kiota-Authentication with Azure
package com.microsoft.kiota.authentication;
import jakarta.annotation.Nonnull;
/** Holds the tracing, metrics and logging configuration for the authentication provider adapter */
public class ObservabilityOptions {
/** default constructor */
public ObservabilityOptions() {}
/**
* Gets the instrumentation name for the tracer
* @return the instrumentation name for the tracer
*/
@Nonnull public String getTracerInstrumentationName() {
return "com.microsoft.kiota.authentication:microsoft-kiota-authentication-azure";
}
}