Forward Apache HTTPD Web Server Access Logs to Azure blob on AEMaaCS | Community
Skip to main content
New Participant
April 4, 2024
Solved

Forward Apache HTTPD Web Server Access Logs to Azure blob on AEMaaCS

  • April 4, 2024
  • 1 reply
  • 683 views

I have a client using AEMaaCS and Splunk that would like to auto forward the raw web server log files to an Azure Blob container on a daily basis. Specifically it is this log format:

Apache HTTPD Web Server Access Logs

https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/implementing/developing/logging#:~:text=or%20Access%20logs.-,Apache%20HTTPD%20Web%20Server%20Access%20Log,-The%20Apache%20HTTP

 

Is this possible and if so how?

Thank you

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by EstebanBustamante

Hi,

 

You could take advantage of the CloudManager API or CloudManager CLI to download the logs and then transfer them to your Azure blob. This can be an independent process from AEM. You could leverage App Builder, another serverless service, or any other type of architecture you prefer. With the ability to access the logs, you should be able to use them as needed.


Some resources that may be useful:
https://experienceleague.adobe.com/en/docs/experience-manager-learn/cloud-service/expert-resources/cloud-5/cloud5-aem-log-files
https://developer.adobe.com/experience-cloud/cloud-manager/reference/api/#tag/Environments/operation/downloadLogs 

 

Hope this helps

1 reply

EstebanBustamante
EstebanBustamanteAccepted solution
New Participant
April 4, 2024

Hi,

 

You could take advantage of the CloudManager API or CloudManager CLI to download the logs and then transfer them to your Azure blob. This can be an independent process from AEM. You could leverage App Builder, another serverless service, or any other type of architecture you prefer. With the ability to access the logs, you should be able to use them as needed.


Some resources that may be useful:
https://experienceleague.adobe.com/en/docs/experience-manager-learn/cloud-service/expert-resources/cloud-5/cloud5-aem-log-files
https://developer.adobe.com/experience-cloud/cloud-manager/reference/api/#tag/Environments/operation/downloadLogs 

 

Hope this helps

Esteban Bustamante
q_t_dAuthor
New Participant
April 4, 2024

Thanks a lot Esteban, I will investigate these options.