-
-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Puppet] Datadog agent does not collect Apache logs #3514
Milestone
Comments
First step in jenkins-infra/jenkins-infra#2764 deployed with success Next tasks:
|
|
https://github.com/jenkins-infra/puppet-apachelogcompressor is now archived |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While working on #3485 and #3494 , we found that the Datadog agent integration with Apache is incomplete: we do not have Apache log collection (only metrics).
https://docs.datadoghq.com/integrations/apache/?tab=host#log-collection states that a section
logs
must be configured in theapache
integration configuration file (/etc/datadog-agent/conf.d/apache.d/conf.yaml
)The main cause is the Puppet module for datadog agent does not support all the features of the integrations: Logs still treated as an integration DataDog/puppet-datadog-agent#612 (comment)
apache
instead.Another blocker is the file
/etc/datadog-agent/conf.d/process.yaml
, related to https://docs.datadoghq.com/integrations/process/, which is empty and invalid, causing trouble for datadog-agent for monitoring the Apache (and other) processes.datadogagent_check
custom puppet profile we have: let's remove itThe
datadog-agent
process need to read the log files for apache (at least?) so these files need the permissionread
forothers
(to avoid adding the agent to an adminisrtator group) andexecute
on the containgin directoriesThe text was updated successfully, but these errors were encountered: