blob: 14bff5e2a1d1f5bee32895c187362700b439718c [file] [log] [blame]
Matteo Scandoloeb0d11c2017-08-08 13:05:26 -07001
2{#
3Copyright 2017-present Open Networking Foundation
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16#}
17
18
rdudyala996d70b2016-10-13 17:40:55 +000019[udpservice]
20udp_address = {{ listen_ip_addr }}
21udp_port = 4455
22rabbit_userid = {{ rabbit_user }}
23rabbit_password = {{ rabbit_password }}
24rabbit_hosts = {{ rabbit_host }}
25acord_control_exchange = openstack_infra
26
27[loggers]
28keys=root
29
30[handlers]
31keys=logfile
32
33[formatters]
34keys=logfileformatter
35
36[logger_root]
37level=INFO
38#level=DEBUG
39handlers=logfile
40
41[formatter_logfileformatter]
42format='%(asctime)s %(filename)s %(levelname)s %(message)s'
43
44[handler_logfile]
45class=handlers.RotatingFileHandler
46level=NOTSET
47args=('udpagent.log','a',1000000,100)
48formatter=logfileformatter