io.micrometer.tracing.exporter.FinishedSpan Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micrometer-tracing Show documentation
Show all versions of micrometer-tracing Show documentation
Facade over tracing concepts
/**
* Copyright 2022 the original author or authors.
*
* Licensed 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
*
* https://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 io.micrometer.tracing.exporter;
import java.time.Duration;
import java.time.Instant;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import io.micrometer.common.lang.Nullable;
import io.micrometer.tracing.Link;
import io.micrometer.tracing.Span;
/**
* This API is inspired by OpenZipkin Brave (from {code MutableSpan}).
*
* Represents a span that has been finished and is ready to be sent to an external
* location (e.g. Zipkin).
*
* @author OpenZipkin Brave Authors
* @author Marcin Grzejszczak
* @author Yanming Zhou
* @since 1.0.0
*/
public interface FinishedSpan {
/**
* Sets the name.
* @param name name to set
* @return this
*/
FinishedSpan setName(String name);
/**
* @return span's name
*/
String getName();
/**
* @return span's start timestamp
*/
Instant getStartTimestamp();
/**
* @return span's end timestamp
*/
Instant getEndTimestamp();
/**
* @return span's duration
* @since 1.2.0
*/
default Duration getDuration() {
return Duration.between(getStartTimestamp(), getEndTimestamp());
}
/**
* Sets the tags.
* @param tags tags to set
* @return this
*/
FinishedSpan setTags(Map tags);
/**
* @return span's tags
*/
Map getTags();
/**
* Sets the tags with typed values.
* @param tags tags to set
* @return this
* @since 1.1.0
*/
default FinishedSpan setTypedTags(Map tags) {
Map map = new HashMap<>();
tags.forEach((s, o) -> map.put(s, String.valueOf(o)));
return setTags(map);
}
/**
* Not all tracers (e.g. Brave) honor different values of tags in which case the tags
* will always get converted to String.
* @return span's tags with typed values
* @since 1.1.0
*/
default Map getTypedTags() {
return new HashMap<>(getTags());
}
/**
* Sets the events.
* @param events events to set
* @return this
*/
FinishedSpan setEvents(Collection> events);
/**
* @return span's events as timestamp to value mapping
*/
Collection> getEvents();
/**
* @return span's span id
*/
String getSpanId();
/**
* @return span's parent id or {@code null} if not set
*/
@Nullable
String getParentId();
/**
* @return span's remote ip
*/
@Nullable
String getRemoteIp();
/**
* @return span's local ip
*/
@Nullable
default String getLocalIp() {
return null;
}
/**
* Sets the local ip.
* @param ip ip to set
* @return this
*/
FinishedSpan setLocalIp(String ip);
/**
* @return span's remote port
*/
int getRemotePort();
/**
* Sets the remote port.
* @param port port to set
* @return this
*/
FinishedSpan setRemotePort(int port);
/**
* @return span's trace id
*/
String getTraceId();
/**
* @return corresponding error or {@code null} if one was not thrown
*/
@Nullable
Throwable getError();
/**
* Sets the error.
* @param error error to set
* @return this
*/
FinishedSpan setError(Throwable error);
/**
* @return span's kind
*/
Span.Kind getKind();
/**
* @return remote service name or {@code null} if not set
*/
@Nullable
String getRemoteServiceName();
/**
* Sets the remote service name.
* @param remoteServiceName remote service name
* @return this
*/
FinishedSpan setRemoteServiceName(String remoteServiceName);
/**
* @return links
* @since 1.1.0
*/
default List getLinks() {
return Collections.emptyList();
}
/**
* Adds links.
* @param links links to add
* @return this
* @since 1.1.0
*/
default FinishedSpan addLinks(List links) {
return this;
}
/**
* Adds a link.
* @param link link to add
* @return this
* @since 1.1.0
*/
default FinishedSpan addLink(Link link) {
return this;
}
}