feat: disable newrelic monitoring in staging env by default

This commit is contained in:
Vishnu Narayanan
2024-11-20 20:03:31 +05:30
parent 879da72b10
commit c04b3b4297
+2 -2
View File
@@ -71,12 +71,12 @@ development:
test:
<<: *default_settings
# It doesn't make sense to report to New Relic from automated test runs.
monitor_mode: false
monitor_mode: <%= ENV.fetch('NEW_RELIC_MONITORING_ENABLED', false) %>
staging:
<<: *default_settings
app_name: <%= ENV.fetch('NEW_RELIC_APP_NAME', 'Chatwoot') %> (Staging)
monitor_mode: false
monitor_mode: <%= ENV.fetch('NEW_RELIC_MONITORING_ENABLED', false) %>
production:
<<: *default_settings