[ansible][fedora] Update package name
[barometer.git] / puppet-barometer / templates / collectd-gnocchi.conf.erb
1 <LoadPlugin python>
2   Globals true
3 </LoadPlugin>
4
5 <Plugin python>
6     ModulePath "/opt/stack/collectd-openstack/collectd-openstack-plugins"
7     LogTraces true
8     Interactive false
9     Import "collectd_ceilometer.gnocchi.plugin"
10
11     <Module "collectd_ceilometer.gnocchi.plugin">
12
13         # Verbosity True|False
14         VERBOSE False
15
16         # Batch size
17         BATCH_SIZE "1"
18
19         DEFAULT_ARCHIVE_POLICY "high"
20         # Service endpoint addresses
21         OS_AUTH_URL "<%=@auth_url-%>/v3"
22
23         # Ceilometer address
24         CEILOMETER_URL_TYPE "internalURL"
25
26         # Ceilometer timeout in ms
27         CEILOMETER_TIMEOUT "5000"
28
29         # # Ceilometer user creds
30         OS_USERNAME "<%=@collectd_username-%>"
31         OS_PASSWORD "<%=@collectd_password-%>"
32         OS_TENANT_NAME "service"
33
34       <UNITS>
35       </UNITS>
36     </Module>
37 </Plugin>
38
39