ReadyAPI Runner on Jenkins writes logs in the home directory how do I clean up?
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ReadyAPI Runner on Jenkins writes logs in the home directory how do I clean up?
We use a ReadyAPI Runner on our Jenkins slave and we have seen that the runner writes his own log for every Job that it running. The log is located in the <home directory>/.readyapi directory, where we have a reduced space to write something. After a while the node will be unusable because the logfiles will exceed the space available.
In the documentation I did not find an option to specify not to write logs there or a different location. How can I tell the runner not to write logs or write them elsewhere?
I'm running on linux, the used readyapi version is at 2.6.0 at the moment.
Solved! Go to Solution.
- Labels:
-
Automation Environments
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Regards,
Rao.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for the idea Rao!
@chilber did you try the suggestion?
Sonya Mihaljova
Community and Education Specialist
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
moving the home directory will effect other installed software, so this is not an option.
Isn't this a problem for everyone, that the runner will create a hidden directory which will grow for ever without the possibility of cleaning it up? We set up the automation hosts automatically and no one is meant actually log on to it.
Thx
Carsten
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
https://community.smartbear.com/t5/SoapUI-Pro/How-do-I-change-log-file-location-soapui-log-soapui-er...
Regards,
Rao.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Rao,
Thank you for pointing this out.
The linked thread has a different problem. The system.out and system.err is perfectly written to the jenkins logfiles.
The logs that are written to the hidden directory <home>/.readyapi are totally useless for me since I have system.out and system.err. If I could I woult deactivate this redundant log location but I got the impression that this cannot be done.
Thanks
Carsten
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi, @chilber!
To turn off logging, try editing the "soapui-log4j.xml" file in the "<ReadyAPI installation>/bin" folder.
There is a number of "logger" elements that control what to log. Each of them has one or more child elements "AppenderRef" specifying output. Output defined in the "Appenders" element is located in the same file.
If the appender writes to file (FILE, GLOBAL_GROOVY_LOG, LICENSE_LOG, and ERRORFILE), set the "level" attribute of AppenderRef to "OFF".
For example, there is a "groovy.log" logger:
<logger name="groovy.log" level="INFO" additivity="false">
<AppenderRef ref="CONSOLE"/>
<AppenderRef ref="GLOBAL_GROOVY_LOG" level="DEBUG"/>
</logger>
To turn off logging to files but keep logging in the console output, set level="OFF" for the second AppenderRef:
<logger name="groovy.log" level="INFO" additivity="false">
<AppenderRef ref="CONSOLE"/>
<AppenderRef ref="GLOBAL_GROOVY_LOG" level="OFF"/>
</logger>
Repeat it for all the logger elements to not write logs to files.Hope it will solve your problem.
Alexander Linkov
SmartBear Technical Writer
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@chilber this should be the answer you are looking for🙂 Let us know you have more questions!
Sonya Mihaljova
Community and Education Specialist
