blob: 02fb37c6499f7a3e2e6caf75d488ff0785ecf332 [file] [log] [blame]
// Copyright (C) 2019 The Android Open Source Project
//
// 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
//
// http://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 com.google.gerrit.server.logging;
import com.google.gerrit.extensions.annotations.ExtensionPoint;
import java.time.Instant;
/**
* Extension point for logging performance records.
*
* <p>This extension point is invoked for all operations for which the execution time is measured.
* The invocation of the extension point does not happen immediately, but only at the end of a
* request (REST call, SSH call, git push). Implementors can write the execution times into a
* performance log for further analysis.
*
* <p>For optimal performance implementors should overwrite the default <code>log</code> methods to
* avoid an unneeded instantiation of Metadata.
*/
@ExtensionPoint
public interface PerformanceLogger {
/**
* Record the execution time of an operation in a performance log.
*
* @param operation operation that was performed
* @param durationNanos time that the execution of the operation took (in nanoseconds)
*/
default void logNanos(String operation, long durationNanos, Instant endTime) {
logNanos(operation, durationNanos, endTime, Metadata.empty());
}
/**
* Record the execution time of an operation in a performance log.
*
* @param operation operation that was performed
* @param durationNanos time that the execution of the operation took (in nanoseconds)
* @param metadata metadata
*/
void logNanos(String operation, long durationNanos, Instant endTime, Metadata metadata);
/**
* Called after all performance events of a request have been logged via {@link #logNanos(String,
* long, Instant)} or {@link #logNanos(String, long, Instant, Metadata)}.
*/
default void done() {}
}