Mykyta Karpin | db73765 | 2018-02-05 11:11:31 +0200 | [diff] [blame] | 1 | gnocchi: |
| 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.0.1 |
| 56 | port: 11211 |
| 57 | metricd: |
| 58 | workers: 5 |
| 59 | statsd: |
| 60 | resource_id: 07f26121-5777-48ba-8a0b-d70468133dd9 |
| 61 | enabled: true |
| 62 | bind: |
| 63 | address: 127.0.0.1 |
| 64 | port: 8125 |
| 65 | apache: |
| 66 | server: |
| 67 | enabled: true |
| 68 | default_mpm: event |
| 69 | mpm: |
| 70 | prefork: |
| 71 | enabled: true |
| 72 | servers: |
| 73 | start: 5 |
| 74 | spare: |
| 75 | min: 2 |
| 76 | max: 10 |
| 77 | max_requests: 0 |
| 78 | max_clients: 20 |
| 79 | limit: 20 |
| 80 | site: |
| 81 | gnocchi: |
| 82 | enabled: false |
| 83 | available: true |
| 84 | type: wsgi |
| 85 | name: gnocchi |
| 86 | host: |
| 87 | name: gnocchi.ci.local |
| 88 | address: 127.0.0.1 |
| 89 | port: 8041 |
| 90 | log: |
| 91 | custom: |
| 92 | format: >- |
| 93 | %v:%p %{X-Forwarded-For}i %h %l %u %t \"%r\" %>s %D %O \"%{Referer}i\" \"%{User-Agent}i\" |
| 94 | wsgi: |
| 95 | daemon_process: gnocchi-api |
| 96 | processes: 2 |
| 97 | threads: 10 |
| 98 | user: gnocchi |
| 99 | group: gnocchi |
| 100 | display_name: '%{GROUP}' |
| 101 | script_alias: '/ /usr/bin/gnocchi-api' |
| 102 | application_group: '%{GLOBAL}' |
| 103 | authorization: 'On' |
| 104 | pkgs: |
| 105 | - apache2 |
| 106 | modules: |
| 107 | - wsgi |