From 9a17648eeec1e1ecbf33d12a9056b246397e6466 Mon Sep 17 00:00:00 2001 From: zmagod Date: Fri, 7 Apr 2017 11:23:45 +0200 Subject: [PATCH] Adds new relic in sciNote [fixes SCI-1183] --- Gemfile | 1 + Gemfile.lock | 2 ++ config/newrelic.yml | 47 +++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 50 insertions(+) create mode 100644 config/newrelic.yml diff --git a/Gemfile b/Gemfile index fa1a3f747..52f604d1a 100644 --- a/Gemfile +++ b/Gemfile @@ -67,6 +67,7 @@ gem 'ruby-graphviz', '~> 1.2' # Graphviz for rails gem 'tinymce-rails' # Rich text editor gem 'base62' # Used for smart annotations +gem 'newrelic_rpm' group :development, :test do gem 'byebug' diff --git a/Gemfile.lock b/Gemfile.lock index 1a78ddef0..6fba8ae01 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -188,6 +188,7 @@ GEM coffee-rails (>= 3.2.1) jquery-rails rails (>= 3.2.0) + newrelic_rpm (4.0.0.332) nokogiri (1.6.8) mini_portile2 (~> 2.1.0) pkg-config (~> 1.1.7) @@ -369,6 +370,7 @@ DEPENDENCIES minitest-reporters (~> 1.1) momentjs-rails (>= 2.9.0) nested_form_fields + newrelic_rpm nokogiri paperclip (~> 4.3) pg diff --git a/config/newrelic.yml b/config/newrelic.yml new file mode 100644 index 000000000..8e18095e7 --- /dev/null +++ b/config/newrelic.yml @@ -0,0 +1,47 @@ +# +# This file configures the New Relic Agent. New Relic monitors Ruby, Java, +# .NET, PHP, Python and Node applications with deep visibility and low +# overhead. For more information, visit www.newrelic.com. +# +# Generated April 07, 2017, for version 4.0.0.332 +# +# For full documentation of agent configuration options, please refer to +# https://docs.newrelic.com/docs/agents/ruby-agent/installation-configuration/ruby-agent-configuration + +common: &default_settings + # Required license key associated with your New Relic account. + license_key: <%= ENV["NEW_RELIC_LICENSE_KEY"] %> + + # Your application name. Renaming here affects where data displays in New + # Relic. For more details, see https://docs.newrelic.com/docs/apm/new-relic-apm/maintenance/renaming-applications + app_name: SciNote + + # To disable the agent regardless of other settings, uncomment the following: + # agent_enabled: false + + # Logging level for log/newrelic_agent.log + log_level: info + + +# Environment-specific settings are in this section. +# RAILS_ENV or RACK_ENV (as appropriate) is used to determine the environment. +# If your application has other named environments, configure them here. +development: + <<: *default_settings + app_name: SciNote (Development) + + # NOTE: There is substantial overhead when running in developer mode. + # Do not use for production or load testing. + developer_mode: true + +test: + <<: *default_settings + # It doesn't make sense to report to New Relic from automated test runs. + monitor_mode: false + +staging: + <<: *default_settings + app_name: SciNote (Staging) + +production: + <<: *default_settings