Sha256: 8cf70f1841224f4dd7c553c0c5c27f45514924074156219086d32f0d20342e1c

Contents?: true

Size: 1.22 KB

Versions: 4

Compression:

Stored size: 1.22 KB

Contents

default: &defaults
  # Your push api key, it is possible to set this dynamically using ERB:
  # push_api_key: "<%%= ENV['APPSIGNAL_PUSH_API_KEY'] %>"
  push_api_key: "<%= push_api_key %>"

  # Your app's name
  name: "<%= app_name %>"

  # Request headers that should be recorded per sample
  request_headers: [
    <%= request_headers %>
  ]

  # 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.
<% environments.each do |environment| -%>
<%= environment %>:
  <<: *defaults
  active: true
<%= "\n" unless environment == environments.last -%>
<% end -%>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
appsignal-2.6.0-java resources/appsignal.yml.erb
appsignal-2.6.0 resources/appsignal.yml.erb
appsignal-2.6.0.beta.1 resources/appsignal.yml.erb
appsignal-2.6.0.beta.1-java resources/appsignal.yml.erb