source: npl/virt/libvirt_conf/root/etc/libvirt/virtlogd.conf @ c5c522c

gcc484ntopperl-5.22
Last change on this file since c5c522c was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100644
File size: 1.8 KB
Line 
1# Master virtlogd 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#    x:journald
45#      ouput to the systemd journal
46# In all case the x prefix is the minimal level, acting as a filter
47#    1: DEBUG
48#    2: INFO
49#    3: WARNING
50#    4: ERROR
51#
52# Multiple output can be defined, they just need to be separated by spaces.
53# e.g. to log all warnings and errors to syslog under the virtlogd ident:
54#log_outputs="3:syslog:virtlogd"
55#
56
57# The maximum number of concurrent client connections to allow
58# over all sockets combined.
59#max_clients = 1024
Note: See TracBrowser for help on using the repository browser.