hi guys,
What's the best way to configure logging in Jmeter to see all the application ( which we are hitting) and all Jmeter logs in a single log file . Basically i customized attached log4j2.xml file & replaced original ( which comes after installation) log4j2.xml with that in bin folder. But with that following thing happened.... *Jmeter & application logs in detail started coming in Jenkins console but in bin folder jmeter.log file stops getting updated i.e no further logging in Jmeter. * Then I customized log file with this link i googled .. *https://www.blazemeter.com/blog/how-to-configure-jmeter-logging <https://www.blazemeter.com/blog/how-to-configure-jmeter-logging>* but after doing that.. Application logs stopped coming & Jmeter logs *in detai*l stopped coming in Jenkins console . In bin folder jmeter.log file starts getting updated *but not in detail.* *** detail logs I meant above -- ALL the logs -- when jmeter started, no. of threads , loop input value, summarizer i.e. all the activity logs of Jmeter during the test run.. So please help me in to configure logging in a way to see all the application ( which we are hitting) and all Jmeter logs in a single log file & in Jenkins console too. And if you have any updated working log4j2.xml file that covers this case then please share with me... -- ::DISCLAIMER:: ---------------------------------------------------------------------------------------------------------------------------------------------------- This message is intended only for the use of the addressee and may contain information that is privileged, confidential and exempt from disclosure under applicable law. If the reader of this message is not the intended recipient, or the employee or agent responsible for delivering the message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this e-mail in error, please notify us immediately by return e-mail and delete this e-mail and all attachments from your system.
<?xml version="1.0" encoding="UTF-8"?> <!-- 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. --> <Configuration status="WARN" packages="org.apache.jmeter.gui.logging"> <Appenders> <File name="jmeter-log" fileName="${sys:jmeter.logfile:-jmeter.log}" append="false"> <PatternLayout> <pattern>%d %p %c{1.}: %m%n</pattern> </PatternLayout> </File> <GuiLogEvent name="gui-log-event"> <PatternLayout> <pattern>%d %p %c{1.}: %m%n</pattern> </PatternLayout> </GuiLogEvent> </Appenders> <Loggers> <Root level="info"> <AppenderRef ref="jmeter-log" /> <AppenderRef ref="gui-log-event" /> </Root> <Logger name="org.apache.jmeter.junit" level="debug" /> <!-- <Logger name="org.apache.jmeter.control" level="debug" /> <Logger name="org.apache.jmeter.testbeans" level="debug" /> <Logger name="org.apache.jmeter.engine" level="debug" /> <Logger name="org.apache.jmeter.threads" level="debug" /> <Logger name="org.apache.jmeter.gui" level="warn" /> <Logger name="org.apache.jmeter.testelement" level="debug" /> <Logger name="org.apache.jmeter.util" level="warn" /> <Logger name="org.apache.jmeter.protocol.http" level="debug" /> --> <!-- # For CookieManager, AuthManager etc: --> <!-- <Logger name="org.apache.jmeter.protocol.http.control" level="debug" /> <Logger name="org.apache.jmeter.protocol.ftp" level="warn" /> <Logger name="org.apache.jmeter.protocol.jdbc" level="debug" /> <Logger name="org.apache.jmeter.protocol.java" level="warn" /> <Logger name="org.apache.jmeter.testelements.property" level="debug" /> --> <Logger name="org.apache.jorphan" level="info" /> <!-- # Apache HttpClient logging examples --> <!-- # Enable header wire + context logging - Best for Debugging --> <!-- <Logger name="org.apache.http" level="debug" /> <Logger name="org.apache.http.wire" level="error" /> --> <!-- # Enable full wire + context logging --> <!-- <Logger name="org.apache.http" level="debug" /> --> <!-- # Enable context logging for connection management --> <!-- <Logger name="org.apache.http.impl.conn" level="debug" /> --> <!-- # Enable context logging for connection management / request execution --> <!-- <Logger name="org.apache.http.impl.conn" level="debug" /> <Logger name="org.apache.http.impl.client" level="debug" /> <Logger name="org.apache.http.client" level="debug" /> --> <!-- # Reporting logging configuration examples --> <!-- # If you want to debug reporting, uncomment this line --> <!-- <Logger name="org.apache.jmeter.report" level="debug" /> --> <!-- # More user specific logging configuration examples. --> <!-- <Logger name="org.apache.jorphan.reflect" level="debug" /> --> <!-- # Warning: Enabling the next debug line causes javax.net.ssl.SSLException: Received fatal alert: unexpected_message for certain sites when used with the default HTTP Sampler --> <!-- <Logger name="org.apache.jmeter.util.HttpSSLProtocolSocketFactory" level="debug" /> <Logger name="org.apache.jmeter.util.JsseSSLManager" level="debug" /> --> <!-- # Enable Proxy request debug --> <!-- <Logger name="org.apache.jmeter.protocol.http.proxy.HttpRequestHdr" level="debug" /> --> </Loggers> </Configuration>
--------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@jmeter.apache.org For additional commands, e-mail: user-h...@jmeter.apache.org