virtlogd.conf 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # Master virtlogd 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. # x:journald
  41. # ouput to the systemd journal
  42. # In all case the x prefix is the minimal level, acting as a filter
  43. # 1: DEBUG
  44. # 2: INFO
  45. # 3: WARNING
  46. # 4: ERROR
  47. #
  48. # Multiple output can be defined, they just need to be separated by spaces.
  49. # e.g. to log all warnings and errors to syslog under the virtlogd ident:
  50. #log_outputs="3:syslog:virtlogd"
  51. #
  52. # The maximum number of concurrent client connections to allow
  53. # over all sockets combined.
  54. #max_clients = 1024