[ansible][fedora] Update package name
[barometer.git] / puppet-barometer / templates / collectd-ceil.conf.erb
1 # Copyright 2017 Intel Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #   http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 <LoadPlugin python>
16   Globals true
17 </LoadPlugin>
18
19 <Plugin python>
20     ModulePath "/opt/stack/collectd-ceilometer/"
21     LogTraces true
22     Interactive false
23     Import "collectd_ceilometer.gnocchi.plugin"
24
25     <Module "collectd_ceilometer.gnocchi.plugin">
26
27         # Verbosity True|False
28         VERBOSE True
29
30         # Batch size
31         BATCH_SIZE "1"
32
33         DEFAULT_ARCHIVE_POLICY "high"
34         # Service endpoint addresses
35         OS_AUTH_URL "<%=@auth_url-%>/v3"
36
37         # Ceilometer address
38         CEILOMETER_URL_TYPE "internalURL"
39
40         # Ceilometer timeout in ms
41         CEILOMETER_TIMEOUT "1000"
42
43         # # Ceilometer user creds
44         OS_USERNAME "<%=@collectd_username-%>"
45         OS_PASSWORD "<%=@collectd_password-%>"
46         OS_TENANT_NAME "service"
47
48       <UNITS>
49       </UNITS>
50     </Module>
51 </Plugin>
52
53