co.elastic.apm.api.AbstractSpanImpl Maven / Gradle / Ivy
/*-
* #%L
* Elastic APM Java agent
* %%
* Copyright (C) 2018 - 2020 Elastic and contributors
* %%
* 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.
* #L%
*/
package co.elastic.apm.api;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.lang.invoke.MethodHandle;
public abstract class AbstractSpanImpl implements Span {
@Nonnull
// co.elastic.apm.agent.impl.transaction.Span
protected final Object span;
AbstractSpanImpl(@Nonnull Object span) {
this.span = span;
}
@Nonnull
@Override
public Span createSpan() {
Object span = doCreateSpan();
return span != null ? new SpanImpl(span) : NoopSpan.INSTANCE;
}
@Nonnull
@Override
public Span startSpan(String type, @Nullable String subtype, @Nullable String action) {
Object span = doCreateSpan();
if (span != null) {
doSetTypes(span, type, subtype, action);
return new SpanImpl(span);
}
return NoopSpan.INSTANCE;
}
@Nonnull
@Override
public Span startSpan() {
Object span = doCreateSpan();
return span != null ? new SpanImpl(span) : NoopSpan.INSTANCE;
}
public void doSetStartTimestamp(long epochMicros) {
// co.elastic.apm.agent.plugin.api.AbstractSpanInstrumentation$SetStartTimestampInstrumentation
}
private Object doCreateSpan() {
// co.elastic.apm.agent.plugin.api.AbstractSpanInstrumentation$DoCreateSpanInstrumentation.doCreateSpan
return null;
}
void doSetName(String name) {
// co.elastic.apm.agent.plugin.api.AbstractSpanInstrumentation$SetNameInstrumentation.doSetName
}
void doSetType(String type) {
// co.elastic.apm.agent.plugin.api.AbstractSpanInstrumentation$SetTypeInstrumentation.doSetType
}
private void doSetTypes(Object span, String type, @Nullable String subtype, @Nullable String action) {
// co.elastic.apm.agent.plugin.api.AbstractSpanInstrumentation$SetTypesInstrumentation.doSetType
}
// keep for backwards compatibility reasons
@Deprecated
void doAddTag(String key, String value) {
// co.elastic.apm.agent.plugin.api.AbstractSpanInstrumentation$AddStringLabelInstrumentation
}
void doAddStringLabel(String key, String value) {
// co.elastic.apm.agent.plugin.api.AbstractSpanInstrumentation$AddStringLabelInstrumentation
}
void doAddNumberLabel(String key, Number value) {
// co.elastic.apm.agent.plugin.api.AbstractSpanInstrumentation$AddNumberTagInstrumentation
}
void doAddBooleanLabel(String key, Boolean value) {
// co.elastic.apm.agent.plugin.api.AbstractSpanInstrumentation$AddBooleanTagInstrumentation
}
@Override
public void end() {
// co.elastic.apm.agent.plugin.api.AbstractSpanInstrumentation$EndInstrumentation
}
@Override
public void end(long epochMicros) {
// co.elastic.apm.agent.plugin.api.AbstractSpanInstrumentation$EndWithTimestampInstrumentation
}
@Override
public String captureException(Throwable throwable) {
// co.elastic.apm.agent.plugin.api.AbstractSpanInstrumentation.CaptureExceptionInstrumentation
return "";
}
@Nonnull
@Override
public String getId() {
// co.elastic.apm.agent.plugin.api.AbstractSpanInstrumentation.GetIdInstrumentation
return "";
}
@Nonnull
@Override
public String getTraceId() {
// co.elastic.apm.agent.plugin.api.AbstractSpanInstrumentation.GetTraceIdInstrumentation
return "";
}
@Override
public Scope activate() {
// co.elastic.apm.agent.plugin.api.AbstractSpanInstrumentation.ActivateInstrumentation
return new ScopeImpl(span);
}
@Override
public boolean isSampled() {
// co.elastic.apm.agent.plugin.api.AbstractSpanInstrumentation.IsSampledInstrumentation
return false;
}
@Override
public void injectTraceHeaders(HeaderInjector headerInjector) {
doInjectTraceHeaders(ApiMethodHandles.ADD_HEADER, headerInjector);
}
private void doInjectTraceHeaders(MethodHandle addHeader, HeaderInjector headerInjector) {
// co.elastic.apm.agent.plugin.api.AbstractSpanInstrumentation.InjectTraceHeadersInstrumentation
}
}