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

io.quarkus.jfr.runtime.SpanIdRelational Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.jfr.runtime;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import jdk.jfr.Description;
import jdk.jfr.Label;
import jdk.jfr.MetadataDefinition;
import jdk.jfr.Name;
import jdk.jfr.Relational;

/**
 * This is an annotation that associates multiple events in JFR by SpanId.
 * Fields that can be annotated with this annotation must be in the String class.
 */
@Relational
@MetadataDefinition
@Name("io.quarkus.SpanId")
@Label("Span ID")
@Description("Links spans with the same ID together")
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface SpanIdRelational {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy