io.opentelemetry.sdk.trace.TimedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lightstep-opentelemetry-auto-exporter Show documentation
Show all versions of lightstep-opentelemetry-auto-exporter Show documentation
Lightstep OpenTelemetry Auto Exporter
The newest version!
/*
* Copyright 2019, OpenTelemetry 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
*
* 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 io.opentelemetry.sdk.trace;
import com.google.auto.value.AutoValue;
import io.opentelemetry.common.Attributes;
import io.opentelemetry.trace.Event;
import javax.annotation.concurrent.Immutable;
/** Timed event. */
@Immutable
abstract class TimedEvent implements io.opentelemetry.sdk.trace.data.SpanData.Event {
private static final int DEFAULT_TOTAL_ATTRIBUTE_COUNT = 0;
TimedEvent() {}
/**
* Creates an {@link TimedEvent} with the given time, name and attributes.
*
* @param epochNanos epoch timestamp in nanos.
* @param name the name of this {@code TimedEvent}.
* @param attributes the attributes of this {@code TimedEvent}.
* @return an {@code TimedEvent}.
*/
static TimedEvent create(
long epochNanos, String name, Attributes attributes, int totalAttributeCount) {
return new AutoValue_TimedEvent_RawTimedEvent(
name, attributes, epochNanos, totalAttributeCount);
}
/**
* Creates an {@link TimedEvent} with the given time and event.
*
* @param epochNanos epoch timestamp in nanos.
* @param event the event.
* @return an {@code TimedEvent}.
*/
static TimedEvent create(long epochNanos, Event event) {
return new AutoValue_TimedEvent_RawTimedEventWithEvent(
epochNanos, event, DEFAULT_TOTAL_ATTRIBUTE_COUNT);
}
@AutoValue
@Immutable
abstract static class RawTimedEventWithEvent extends TimedEvent {
abstract Event getEvent();
@Override
public String getName() {
return getEvent().getName();
}
@Override
public Attributes getAttributes() {
return getEvent().getAttributes();
}
@Override
public abstract int getTotalAttributeCount();
}
@AutoValue
@Immutable
abstract static class RawTimedEvent extends TimedEvent {}
}