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

io.opentelemetry.javaagent.instrumentation.kubernetesclient.CurrentState Maven / Gradle / Ivy

/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package io.opentelemetry.javaagent.instrumentation.kubernetesclient;

import io.opentelemetry.context.Context;
import io.opentelemetry.context.Scope;
import javax.annotation.Nullable;
import okhttp3.Request;

/**
 * Kubernetes instrumentation starts and ends spans in two different methods - the only way to pass
 * state between them is to use a thread local.
 */
public final class CurrentState {
  private static final ThreadLocal CURRENT = new ThreadLocal<>();

  private final Context parentContext;
  private final Context context;
  private final Scope scope;
  private final Request request;

  private CurrentState(Context parentContext, Context context, Scope scope, Request request) {
    this.parentContext = parentContext;
    this.context = context;
    this.scope = scope;
    this.request = request;
  }

  public static void set(Context parentContext, Context context, Scope scope, Request request) {
    CURRENT.set(new CurrentState(parentContext, context, scope, request));
  }

  @Nullable
  public static CurrentState remove() {
    CurrentState currentState = CURRENT.get();
    CURRENT.remove();
    return currentState;
  }

  public Context getParentContext() {
    return parentContext;
  }

  public Context getContext() {
    return context;
  }

  public Scope getScope() {
    return scope;
  }

  public Request getRequest() {
    return request;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy