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

io.micrometer.core.instrument.binder.grpc.MetricCollectingClientCall Maven / Gradle / Ivy

There is a newer version: 1.13.2
Show newest version
/*
 * Copyright 2021 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.core.instrument.binder.grpc;

import io.grpc.ClientCall;
import io.grpc.ForwardingClientCall.SimpleForwardingClientCall;
import io.grpc.Metadata;
import io.grpc.Status;
import io.micrometer.core.instrument.Counter;

import java.util.function.Consumer;

/**
 * A simple forwarding client call that collects metrics.
 *
 * @param  The type of message sent one or more times to the server.
 * @param  The type of message received one or more times from the server.
 * @author Daniel Theuke ([email protected])
 */
class MetricCollectingClientCall extends SimpleForwardingClientCall {

    private final Counter requestCounter;

    private final Counter responseCounter;

    private final Consumer processingDurationTiming;

    /**
     * Creates a new delegating ClientCall that will wrap the given client call to collect
     * metrics.
     * @param delegate The original call to wrap.
     * @param requestCounter The counter for outgoing requests.
     * @param responseCounter The counter for incoming responses.
     * @param processingDurationTiming The consumer used to time the processing duration
     * along with a response status.
     */
    MetricCollectingClientCall(final ClientCall delegate, final Counter requestCounter,
            final Counter responseCounter, final Consumer processingDurationTiming) {

        super(delegate);
        this.requestCounter = requestCounter;
        this.responseCounter = responseCounter;
        this.processingDurationTiming = processingDurationTiming;
    }

    @Override
    public void start(final ClientCall.Listener responseListener, final Metadata metadata) {
        super.start(new MetricCollectingClientCallListener<>(responseListener, this.responseCounter,
                this.processingDurationTiming), metadata);
    }

    @Override
    public void sendMessage(final Q requestMessage) {
        this.requestCounter.increment();
        super.sendMessage(requestMessage);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy