co.elastic.apm.agent.tracer.NoopTracer Maven / Gradle / Ivy
/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package co.elastic.apm.agent.tracer;
import co.elastic.apm.agent.tracer.dispatch.HeaderGetter;
import co.elastic.apm.agent.tracer.pooling.ObjectPoolFactory;
import co.elastic.apm.agent.tracer.reference.ReferenceCounted;
import co.elastic.apm.agent.tracer.reference.ReferenceCountedMap;
import javax.annotation.Nullable;
import java.util.Collections;
import java.util.Set;
class NoopTracer implements Tracer {
static final Tracer INSTANCE = new NoopTracer();
private NoopTracer() {
}
@Override
public boolean isRunning() {
return false;
}
@Nullable
@Override
public T probe(Class type) {
return null;
}
@Override
public T require(Class type) {
throw new IllegalStateException();
}
@Override
public T getConfig(Class configuration) {
throw new IllegalStateException();
}
@Override
public ObjectPoolFactory getObjectPoolFactory() {
throw new IllegalStateException();
}
@Override
public ReferenceCountedMap newReferenceCountedMap() {
throw new IllegalStateException();
}
@Override
public Set getTraceHeaderNames() {
return Collections.emptySet();
}
@Override
public ElasticContext> currentContext() {
return NoopElasticContext.INSTANCE;
}
@Nullable
@Override
public AbstractSpan> getActive() {
return null;
}
@Nullable
@Override
public Transaction> currentTransaction() {
return null;
}
@Nullable
@Override
public ErrorCapture getActiveError() {
return null;
}
@Nullable
@Override
public Transaction> startRootTransaction(@Nullable ClassLoader initiatingClassLoader) {
return null;
}
@Nullable
@Override
public Transaction> startChildTransaction(@Nullable C headerCarrier, HeaderGetter textHeadersGetter, @Nullable ClassLoader initiatingClassLoader) {
return null;
}
@Nullable
@Override
public ErrorCapture captureException(@Nullable Throwable e, @Nullable ClassLoader initiatingClassLoader) {
return null;
}
}