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

io.pyroscope.javaagent.Snapshot Maven / Gradle / Ivy

There is a newer version: 0.14.0
Show newest version
package io.pyroscope.javaagent;

import io.pyroscope.http.Format;
import io.pyroscope.labels.pb.*;

import java.time.Instant;

public final class Snapshot {
    public final Format format;
    public final EventType eventType;
    public final Instant started;
    public final byte[] data;
    public final JfrLabels.Snapshot labels;

    Snapshot(Format format, final EventType eventType, final Instant started, final byte[] data, JfrLabels.Snapshot labels) {
        this.format = format;
        this.eventType = eventType;
        this.started = started;
        this.data = data;
        this.labels = labels;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy