[c5c522c] | 1 | # Master virtlockd daemon configuration file |
---|
| 2 | # |
---|
| 3 | |
---|
| 4 | ################################################################# |
---|
| 5 | # |
---|
| 6 | # Logging controls |
---|
| 7 | # |
---|
| 8 | |
---|
| 9 | # Logging level: 4 errors, 3 warnings, 2 information, 1 debug |
---|
| 10 | # basically 1 will log everything possible |
---|
| 11 | #log_level = 3 |
---|
| 12 | |
---|
| 13 | # Logging filters: |
---|
| 14 | # A filter allows to select a different logging level for a given category |
---|
| 15 | # of logs |
---|
| 16 | # The format for a filter is one of: |
---|
| 17 | # x:name |
---|
| 18 | # x:+name |
---|
| 19 | # where name is a string which is matched against source file name, |
---|
| 20 | # e.g., "remote", "qemu", or "util/json", the optional "+" prefix |
---|
| 21 | # tells libvirt to log stack trace for each message matching name, |
---|
| 22 | # and x is the minimal level where matching messages should be logged: |
---|
| 23 | # 1: DEBUG |
---|
| 24 | # 2: INFO |
---|
| 25 | # 3: WARNING |
---|
| 26 | # 4: ERROR |
---|
| 27 | # |
---|
| 28 | # Multiple filter can be defined in a single @filters, they just need to be |
---|
| 29 | # separated by spaces. |
---|
| 30 | # |
---|
| 31 | # e.g. to only get warning or errors from the remote layer and only errors |
---|
| 32 | # from the event layer: |
---|
| 33 | #log_filters="3:remote 4:event" |
---|
| 34 | |
---|
| 35 | # Logging outputs: |
---|
| 36 | # An output is one of the places to save logging information |
---|
| 37 | # The format for an output can be: |
---|
| 38 | # x:stderr |
---|
| 39 | # output goes to stderr |
---|
| 40 | # x:syslog:name |
---|
| 41 | # use syslog for the output and use the given name as the ident |
---|
| 42 | # x:file:file_path |
---|
| 43 | # output to a file, with the given filepath |
---|
| 44 | # In all case the x prefix is the minimal level, acting as a filter |
---|
| 45 | # 1: DEBUG |
---|
| 46 | # 2: INFO |
---|
| 47 | # 3: WARNING |
---|
| 48 | # 4: ERROR |
---|
| 49 | # |
---|
| 50 | # Multiple output can be defined, they just need to be separated by spaces. |
---|
| 51 | # e.g. to log all warnings and errors to syslog under the virtlockd ident: |
---|
| 52 | #log_outputs="3:syslog:virtlockd" |
---|
| 53 | # |
---|
| 54 | |
---|
| 55 | # Log debug buffer size: |
---|
| 56 | # |
---|
| 57 | # This configuration option is no longer used, since the global |
---|
| 58 | # log buffer functionality has been removed. Please configure |
---|
| 59 | # suitable log_outputs/log_filters settings to obtain logs. |
---|
| 60 | #log_buffer_size = 64 |
---|
| 61 | |
---|
| 62 | # The maximum number of concurrent client connections to allow |
---|
| 63 | # over all sockets combined. |
---|
| 64 | # Each running virtual machine will require one open connection |
---|
| 65 | # to virtlockd. So 'max_clients' will affect how many VMs can |
---|
| 66 | # be run on a host |
---|
| 67 | #max_clients = 1024 |
---|