io.micrometer.jetty12.client.JettyClientContext Maven / Gradle / Ivy
/*
* Copyright 2024 VMware, Inc.
*
* 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.jetty12.client;
import io.micrometer.observation.transport.RequestReplySenderContext;
import org.eclipse.jetty.client.Request;
import org.eclipse.jetty.client.Result;
import java.util.Objects;
import java.util.function.BiFunction;
/**
* Context to use when instrumenting Jetty client metrics with the Observation API.
*
* @since 1.13.0
* @see JettyClientMetrics
*/
public class JettyClientContext extends RequestReplySenderContext {
private final BiFunction uriPatternFunction;
public JettyClientContext(Request request, BiFunction uriPatternFunction) {
super((carrier, key, value) -> Objects.requireNonNull(carrier)
.headers(httpFields -> httpFields.add(key, value)));
this.uriPatternFunction = uriPatternFunction;
setCarrier(request);
}
public BiFunction getUriPatternFunction() {
return uriPatternFunction;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy