The MongoDB module collects logs generated by MongoDB servers.

Setup & Configuration

The MongoDb module is included with the Atatus Infra agent by default, please follow the below steps to enable.

  1. Add the following lines in the file /etc/atatus-infra-agent/atatus.yml.

    copy
    icon/buttons/copy
    logs_enabled: true
    
  2. Copy the MongoDb example configuration file.

    copy
    icon/buttons/copy
    cd /etc/atatus-infra-agent/conf.d/mongodb.d/
    sudo cp mongodb.yml.template mongodb.yml
    
  3. Update the file /etc/atatus-infra-agent/conf.d/mongodb.d/mongodb.yml with below configurations.

    copy
    icon/buttons/copy
    # Log section
    logs:
    
      # - type : (mandatory) type of log input source (log)
    
      - type: log
    
    copy
    icon/buttons/copy
    # If you have custom mongodb log path, you can use below syntax
    
      # - type: (mandatory) type of log input source (log)
      #   paths: (mandatory) Set paths if type is file
      #   service: (mandatory) name of the service owning the log
      #   source: (mandatory) attribute that defines which integration is sending the log
    
    # Log section
    logs:
       - type: log
         paths:
            - /var/log/mongodb/mongodb.log
         source: mongodb
         service: mongodb
    
  4. Restart the atatus infrastructure agent.

    copy
    icon/buttons/copy
    sudo service atatus-infra-agent restart