Audit logs are already enabled by default on AEMaaCS, but they are not really a log file in the traditional sense.Instead, audit events are stored in the repository under the path /var/audit. AEM Devs can use the Repository Browser to inspect audit events. Therefore, audit logs cannot be forwarded t...
Hi @dante8888,I think you will need to add port forwarding, which can be done on AEMaaCS through Advanced Networking: https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/security/configuring-advanced-networking#flexible-port-egressHere is an example from my project:{
...
Hi @newbie34,yes. You should see the log statement also without any custom config, but this enables us to lower the log level to INFO for our specific packages. Good luck,Daniel
Hi @newbie34,the below configuration without specifying a log file works for me on AEMaaCS:{
"org.apache.sling.commons.log.level": "$[env:LOG_LEVEL_CUSTOM;default=error]",
"org.apache.sling.commons.log.names": [
"com.my-project.cms"
]
} Hope this helps,Daniel
Hi @fionas76543059,I have the following rules set up in the <Directory /> for JS/CSS but also for other static content like video and images: <Location ~ ".+.lc-.+-lc.(min.)?(js|css)$">
# Important - Cache control is set to immutable by AEM
Header unset Cache-Control
Heade...
Hi @NageshRaja,we are using GH Actions for deployment to RDE, here is an example pipeline.name: AEM Deploy To RDE
on:
workflow_dispatch:
env:
CM_PROGRAM_ID: _YOUR_VALUE_HERE
CM_ORG_ID: _YOUR_VALUE_HERE@AdobeOrg
CM_ENVIRONMENT_ID: _YOUR_VALUE_HERE
jobs:
build:
name: Deploy Selecte...
Hi @aanchal-sikka,thanks, option 1 is what I am looking for, but I would like to log more events for pages and replication. Also, ideally, forward those logs to Splunk so the team can use them for analysis. BR,Daniel