AEWS access logs are in the format waae_webservices_access_log.2026-02-26.log. These logs are normally not deleted/archived and they could potentially exist for ever.
Is there a way to configure Log Rollover settings, so only the last 30 (days) are kept.
This happens because of the default logging for Access Log by Tomcat.
$AUTOUSER/webserver/conf/server.xml:
<!-- Access log processes all example. Documentation at: /docs/config/valve.html Note: The pattern used is equivalent to using pattern="common" --> <Valve className="org.apache.catalina.valves.AccessLogValve" directory="/opt/CA/WorkloadAutomationAE/autouser.PRD/out" pattern="%h %l %u %t "%r" %s %b" prefix="waae_webservices_access_log" suffix=".log"/>
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="/opt/CA/WorkloadAutomationAE/autouser.PRD/out" pattern="%h %l %u %t "%r" %s %b" prefix="waae_webservices_access_log" suffix=".log" fileDateFormat="yyyy-MM-dd" maxDays="30" />