class InfluxDB::Rails::Configuration

Attributes

application_name[RW]

config option set after_initialize

application_root[W]

FIXME: Old configuration options, remove this in 1.0.1

async[W]

FIXME: Old configuration options, remove this in 1.0.1

backtrace_filters[W]

FIXME: Old configuration options, remove this in 1.0.1

client[R]

configuration passed to InfluxDB::Client

environment[RW]

config option set after_initialize

environment_variable_filters[W]

FIXME: Old configuration options, remove this in 1.0.1

ignored_exception_messages[W]

FIXME: Old configuration options, remove this in 1.0.1

ignored_exceptions[W]

FIXME: Old configuration options, remove this in 1.0.1

ignored_user_agents[W]

FIXME: Old configuration options, remove this in 1.0.1

influxdb_database[W]

FIXME: Old configuration options, remove this in 1.0.1

influxdb_hosts[W]

FIXME: Old configuration options, remove this in 1.0.1

influxdb_password[W]

FIXME: Old configuration options, remove this in 1.0.1

influxdb_port[W]

FIXME: Old configuration options, remove this in 1.0.1

influxdb_username[W]

FIXME: Old configuration options, remove this in 1.0.1

max_delay[W]

FIXME: Old configuration options, remove this in 1.0.1

open_timeout[W]

FIXME: Old configuration options, remove this in 1.0.1

read_timeout[W]

FIXME: Old configuration options, remove this in 1.0.1

retry[W]

FIXME: Old configuration options, remove this in 1.0.1

series_name_for_controller_runtimes[W]

FIXME: Old configuration options, remove this in 1.0.1

series_name_for_db_runtimes[W]

FIXME: Old configuration options, remove this in 1.0.1

series_name_for_exceptions[W]

FIXME: Old configuration options, remove this in 1.0.1

series_name_for_instrumentation[W]

FIXME: Old configuration options, remove this in 1.0.1

series_name_for_render_collection[W]

FIXME: Old configuration options, remove this in 1.0.1

series_name_for_render_partial[W]

FIXME: Old configuration options, remove this in 1.0.1

series_name_for_render_template[W]

FIXME: Old configuration options, remove this in 1.0.1

series_name_for_sql[W]

FIXME: Old configuration options, remove this in 1.0.1

series_name_for_view_runtimes[W]

FIXME: Old configuration options, remove this in 1.0.1

time_precision[W]

FIXME: Old configuration options, remove this in 1.0.1

use_ssl[W]

FIXME: Old configuration options, remove this in 1.0.1

Public Class Methods

new() click to toggle source
# File lib/influxdb/rails/configuration.rb, line 102
def initialize
  @client = ClientConfig.new
  load_defaults
end

Public Instance Methods

debug?() click to toggle source
# File lib/influxdb/rails/configuration.rb, line 107
def debug?
  @debug
end
ignore_current_environment?() click to toggle source
# File lib/influxdb/rails/configuration.rb, line 111
def ignore_current_environment?
  ignored_environments.include?(environment)
end