blob: b9f14150243a988d5454f62549a24ee7be681ca8 [file] [log] [blame]
Mykyta Karpindb737652018-02-05 11:11:31 +02001gnocchi:
2 common:
3 version: 4.0
4 database:
5 engine: mysql
6 host: 127.0.0.1
7 name: gnocchi
8 password: workshop
9 user: gnocchi
10 storage:
11 aggregation_workers: 2
12 driver: ceph
13 ceph_pool: gnocchi
14 ceph_username: gnocchi
15 ceph_secret: workshop
16 ceph_keyring: /etc/ceph/ceph.gnocchi.keyring
17 ceph_timeout: 20
18 ceph_conf: /etc/ceph/ceph.conf
19 redis_url: redis://127.0.0.2/test
20 file_basepath: /var/lib/gnocchi
21 incoming:
22 driver: redis
23 redis_url: redis://127.0.0.2/test_incoming
24 ceph_pool: gnocchi_incoming
25 ceph_username: gnocchi
26 ceph_secret: workshop
27 ceph_keyring: /etc/ceph/ceph.gnocchi.keyring
28 ceph_timeout: 30
29 ceph_conf: /etc/ceph/ceph.conf
30 file_basepath: /var/lib/gnocchi_incoming
31 coordination_backend:
32 url: redis://127.0.0.1/test
33 server:
34 enabled: true
35 debug: true
36 enable_proxy_headers_parsing: true
37 archive_policy:
38 default_aggregation_methods:
39 - mean
40 - max
41 identity:
42 engine: keystone
43 region: RegionOne
44 protocol: http
45 host: 127.0.0.1
46 port: 35357
47 private_port: 5000
48 user: gnocchi
49 password: workshop
50 tenant: service
51 auth_type: password
52 cache:
53 engine: memcached
54 members:
55 - host: 127.0.1.1
56 port: 11211
57 - host: 127.0.2.1
58 port: 11211
59 - host: 127.0.3.1
60 port: 11211
Oleksandr Bryndzii29865f52018-10-04 12:42:51 +030061 security:
62 enabled: true
63 strategy: ENCRYPT
64 secret_key: secret
Mykyta Karpindb737652018-02-05 11:11:31 +020065 metricd:
66 workers: 5
67 statsd:
68 resource_id: 07f26121-5777-48ba-8a0b-d70468133dd9
69 enabled: true
70 bind:
71 address: 127.0.0.1
72 port: 8125
73apache:
74 server:
75 enabled: true
76 default_mpm: event
77 mpm:
78 prefork:
79 enabled: true
80 servers:
81 start: 5
82 spare:
83 min: 2
84 max: 10
85 max_requests: 0
86 max_clients: 20
87 limit: 20
88 site:
89 gnocchi:
90 enabled: false
91 available: true
92 type: wsgi
93 name: gnocchi
94 host:
95 name: gnocchi.ci.local
96 address: 127.0.0.1
97 port: 8041
98 log:
99 custom:
100 format: >-
101 %v:%p %{X-Forwarded-For}i %h %l %u %t \"%r\" %>s %D %O \"%{Referer}i\" \"%{User-Agent}i\"
102 wsgi:
103 daemon_process: gnocchi-api
104 processes: 2
105 threads: 10
106 user: gnocchi
107 group: gnocchi
108 display_name: '%{GROUP}'
109 script_alias: '/ /usr/bin/gnocchi-api'
110 application_group: '%{GLOBAL}'
111 authorization: 'On'
112 pkgs:
113 - apache2
114 modules:
Oleksandr Bryndzii29865f52018-10-04 12:42:51 +0300115 - wsgi