On this page
syslogger - Log messages in the syslog
New in version 2.4.
Synopsis
- Uses syslog to add log entries to the host.
 - Can specify facility and priority.
 
Parameters
| Parameter | Choices/Defaults | Comments | 
|---|---|---|
| facility | 
       
  | 
      
        
        Set the log facility
         | 
     
| log_pid  
        bool
         | 
      
       
  | 
      
        
        Log the pid in brackets
         | 
     
| msg  
        required
         | 
      
        
        This is the message to place in syslog
         | 
     |
| priority | 
       
  | 
      
        
        Set the log priority
         | 
     
Examples
# Full example
- name: Test syslog
  syslogger:
    msg: "Hello from ansible"
    priority: "err"
    facility: "daemon"
    log_pid: true
# Basic usage
- name: Simple Usage
  syslogger:
    msg: "I will end up as daemon.info"
  Status
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
Maintenance
This module is flagged as community which means that it is maintained by the Ansible Community. See Module Maintenance & Support for more info.
For a list of other modules that are also maintained by the Ansible Community, see here.
Author
- Tim Rightnour (@garbled1)
 
Hint
If you notice any issues in this documentation you can edit this document to improve it.
© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
 https://docs.ansible.com/ansible/2.6/modules/syslogger_module.html