blob: da173a3615915ee2dfb3d654996d9eabfccf05e0 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.logging.log4j.perf.jmh;
import java.io.File;
import java.util.concurrent.TimeUnit;
import java.util.logging.FileHandler;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.BenchmarkMode;
import org.openjdk.jmh.annotations.Mode;
import org.openjdk.jmh.annotations.OutputTimeUnit;
import org.openjdk.jmh.annotations.Scope;
import org.openjdk.jmh.annotations.Setup;
import org.openjdk.jmh.annotations.State;
import org.openjdk.jmh.annotations.TearDown;
import org.slf4j.LoggerFactory;
/**
* Benchmarks Log4j 2, Log4j 1, Logback and JUL using the DEBUG level which is enabled for this test. The configuration
* for each uses a FileAppender
*/
// HOW TO RUN THIS TEST
// java -jar log4j-perf/target/benchmarks.jar ".*FileAppenderWithLocationBenchmark.*" -f 1 -wi 10 -i 20
//
// RUNNING THIS TEST WITH 4 THREADS:
// java -jar log4j-perf/target/benchmarks.jar ".*FileAppenderWithLocationBenchmark.*" -f 1 -wi 10 -i 20 -t 4
@State(Scope.Thread)
public class FileAppenderWithLocationBenchmark {
public static final String MESSAGE = "This is a debug message";
private FileHandler julFileHandler;
Logger log4j2Logger;
Logger log4j2RandomLogger;
org.slf4j.Logger slf4jLogger;
org.apache.log4j.Logger log4j1Logger;
@Setup
public void setUp() throws Exception {
System.setProperty("log4j.configurationFile", "log4j2-perfloc.xml");
System.setProperty("log4j.configuration", "log4j12-perfloc.xml");
System.setProperty("logback.configurationFile", "logback-perfloc.xml");
deleteLogFiles();
log4j2Logger = LogManager.getLogger(FileAppenderWithLocationBenchmark.class);
log4j2RandomLogger = LogManager.getLogger("TestRandom");
slf4jLogger = LoggerFactory.getLogger(FileAppenderWithLocationBenchmark.class);
log4j1Logger = org.apache.log4j.Logger.getLogger(FileAppenderWithLocationBenchmark.class);
}
@TearDown
public void tearDown() {
System.clearProperty("log4j.configurationFile");
System.clearProperty("log4j.configuration");
System.clearProperty("logback.configurationFile");
deleteLogFiles();
}
private void deleteLogFiles() {
final File logbackFile = new File("target/testlogback.log");
logbackFile.delete();
final File log4jFile = new File ("target/testlog4j.log");
log4jFile.delete();
final File log4jRandomFile = new File ("target/testRandomlog4j2.log");
log4jRandomFile.delete();
final File log4j2File = new File ("target/testlog4j2.log");
log4j2File.delete();
}
@BenchmarkMode(Mode.Throughput)
@OutputTimeUnit(TimeUnit.SECONDS)
@Benchmark
public void log4j2RAF() {
log4j2RandomLogger.debug(MESSAGE);
}
@BenchmarkMode(Mode.Throughput)
@OutputTimeUnit(TimeUnit.SECONDS)
@Benchmark
public void log4j2File() {
log4j2Logger.debug(MESSAGE);
}
@BenchmarkMode(Mode.Throughput)
@OutputTimeUnit(TimeUnit.SECONDS)
@Benchmark
public void log4j2FluentFile() {
log4j2Logger.atDebug().withLocation().log(MESSAGE);
}
@BenchmarkMode(Mode.Throughput)
@OutputTimeUnit(TimeUnit.SECONDS)
@Benchmark
public void logbackFile() {
slf4jLogger.debug(MESSAGE);
}
@BenchmarkMode(Mode.Throughput)
@OutputTimeUnit(TimeUnit.SECONDS)
@Benchmark
public void log4j1File() {
log4j1Logger.debug(MESSAGE);
}
}