From 52b2e1ca2e768b0630816fe1cb6a819ce1727bee Mon Sep 17 00:00:00 2001 From: Amree Zaid Date: Wed, 31 Jul 2024 22:05:45 +0800 Subject: [PATCH] Removed Appsignal --- Gemfile | 1 - README.md | 2 -- config/appsignal.yml | 39 --------------------------------------- 3 files changed, 42 deletions(-) delete mode 100644 config/appsignal.yml diff --git a/Gemfile b/Gemfile index 093a2913..8ae3137b 100644 --- a/Gemfile +++ b/Gemfile @@ -6,7 +6,6 @@ ruby "3.2.2" gem "active_decorator" # Decorator gem "activerecord_cursor_paginate" # Cursor pagination gem "ahoy_matey" # analytics -gem "appsignal" # error/performance monitoring gem "aws-sdk-s3", require: false gem "bugsnag" # Error monitoring gem "bootsnap", require: false # Reduces boot times through caching; required in config/boot.rb diff --git a/README.md b/README.md index b9da2dfc..21b048e4 100644 --- a/README.md +++ b/README.md @@ -69,8 +69,6 @@ This is not how I usually code, just saying 😛 [](https://skylight.io) -[](https://appsignal.com) - ## Contacts [@petakopi.my](https://www.instagram.com/petakopi.my/) diff --git a/config/appsignal.yml b/config/appsignal.yml deleted file mode 100644 index 1a9969cb..00000000 --- a/config/appsignal.yml +++ /dev/null @@ -1,39 +0,0 @@ -default: &defaults - # Your push api key, it is possible to set this dynamically using ERB: - push_api_key: "<%= ENV['APPSIGNAL_PUSH_API_KEY'] %>" - - # Your app's name - name: "petakopi" - - # Actions that should not be monitored by AppSignal - # ignore_actions: - # - ApplicationController#isup - - # Errors that should not be recorded by AppSignal - # For more information see our docs: - # https://docs.appsignal.com/ruby/configuration/ignore-errors.html - # ignore_errors: - # - Exception - # - NoMemoryError - # - ScriptError - # - LoadError - # - NotImplementedError - # - SyntaxError - # - SecurityError - # - SignalException - # - Interrupt - # - SystemExit - # - SystemStackError - - # See http://docs.appsignal.com/ruby/configuration/options.html for - # all configuration options. - -# Configuration per environment, leave out an environment or set active -# to false to not push metrics for that environment. -development: - <<: *defaults - active: false - -production: - <<: *defaults - active: true