virtlockd.conf 2.1 KB

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