diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-12-28 13:42:15 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-12-28 13:42:15 +0000 |
commit | 540eb0a9affef14329418b32be0dcd60f2b66e29 (patch) | |
tree | f2562ea6c206c46aedc534497a55fe93f55e97cd /config/gitlab.yml.example | |
parent | c08cb923ec4af9cfb70031259051d5c0c70cad21 (diff) | |
parent | 1be5668ae0e663015d384ea7d8b404f9eeb5b478 (diff) | |
download | gitlab-ce-540eb0a9affef14329418b32be0dcd60f2b66e29.tar.gz |
Merge branch 'influxdb' into 'master'
Storing of application metrics in InfluxDB
This adds support for tracking metrics in InfluxDB, which in turn can be visualized using Grafana. For more information see #2936.
See merge request !2042
Diffstat (limited to 'config/gitlab.yml.example')
-rw-r--r-- | config/gitlab.yml.example | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/config/gitlab.yml.example b/config/gitlab.yml.example index 79fc7423b31..da6d4005da6 100644 --- a/config/gitlab.yml.example +++ b/config/gitlab.yml.example @@ -449,9 +449,26 @@ production: &base # # Ban an IP for one hour (3600s) after too many auth attempts # bantime: 3600 + metrics: + host: localhost + enabled: false + # The name of the InfluxDB database to store metrics in. + database: gitlab + # Credentials to use for logging in to InfluxDB. + # username: + # password: + # The amount of InfluxDB connections to open. + # pool_size: 16 + # The timeout of a connection in seconds. + # timeout: 10 + # The minimum amount of milliseconds a method call has to take before it's + # tracked. Defaults to 10. + # method_call_threshold: 10 development: <<: *base + metrics: + enabled: false test: <<: *base @@ -494,6 +511,10 @@ test: user_filter: '' group_base: 'ou=groups,dc=example,dc=com' admin_group: '' + metrics: + enabled: false staging: <<: *base + metrics: + enabled: false |