Class: GrafanaIntegration
Constant Summary
ApplicationRecord::MAX_PLUCK
Instance Method Summary
collapse
cached_column_list, #create_or_load_association, declarative_enum, default_select_columns, id_in, id_not_in, iid_in, pluck_primary_key, primary_key_in, #readable_by?, safe_ensure_unique, safe_find_or_create_by, safe_find_or_create_by!, #to_ability_name, underscore, where_exists, where_not_exists, with_fast_read_statement_timeout, without_order
#serializable_hash
Instance Method Details
#client ⇒ Object
23
24
25
26
27
|
# File 'app/models/grafana_integration.rb', line 23
def client
return unless enabled?
@client ||= ::Grafana::Client.new(api_url: grafana_url.chomp('/'), token: token)
end
|
#masked_token ⇒ Object
29
30
31
|
# File 'app/models/grafana_integration.rb', line 29
def masked_token
mask(encrypted_token)
end
|
#masked_token_was ⇒ Object
33
34
35
|
# File 'app/models/grafana_integration.rb', line 33
def masked_token_was
mask(encrypted_token_was)
end
|