2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2015-12-28 12:00:32 -05:00
|
|
|
class InfluxdbSettings < ActiveRecord::Migration
|
|
|
|
def change
|
|
|
|
add_column :application_settings, :metrics_enabled, :boolean, default: false
|
|
|
|
|
|
|
|
add_column :application_settings, :metrics_host, :string,
|
|
|
|
default: 'localhost'
|
|
|
|
|
|
|
|
add_column :application_settings, :metrics_database, :string,
|
|
|
|
default: 'gitlab'
|
|
|
|
|
|
|
|
add_column :application_settings, :metrics_username, :string
|
|
|
|
add_column :application_settings, :metrics_password, :string
|
|
|
|
add_column :application_settings, :metrics_pool_size, :integer, default: 16
|
|
|
|
add_column :application_settings, :metrics_timeout, :integer, default: 10
|
|
|
|
add_column :application_settings, :metrics_method_call_threshold,
|
|
|
|
:integer, default: 10
|
|
|
|
end
|
|
|
|
end
|