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

vertx.effect.core.ReqEvent Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version
package vertx.effect.core;

import io.vertx.core.http.HttpMethod;
import jdk.jfr.*;

@Label("http request")
@Name("vertx.effect.httpclient.Request")
@Category("vertx.effect")
@Description("Http request made by vertx-effect http client.")
@StackTrace(value = false)
public class ReqEvent extends Event {

    @Label("method")
    public String method;

    @Label("uri")
    public String uri;

    @Label("status_code")
    public int statusCode = -1;

    @Label("exception_class")
    public String exceptionClass;

    @Label("exception_message")
    public String exceptionMessage;

    @Label("host")
    public String host;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy