mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-26 09:42:46 +08:00
Adds new relic in sciNote [fixes SCI-1183]
This commit is contained in:
parent
541998bde6
commit
9a17648eee
3 changed files with 50 additions and 0 deletions
1
Gemfile
1
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'
|
||||
|
|
|
@ -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
|
||||
|
|
47
config/newrelic.yml
Normal file
47
config/newrelic.yml
Normal file
|
@ -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
|
Loading…
Reference in a new issue