Sha256: 038bc86d8bdc72aef67af4c6a4128e2eb68cae9db71ab3f170d8d1f3cf9b7bf7
Contents?: true
Size: 896 Bytes
Versions: 5
Compression:
Stored size: 896 Bytes
Contents
# frozen_string_literal: true SlackWebhookLogger.setup do |config| # The URL where messages will be sent. This is required. config.webhook_url = "https://hooks.slack.com/services/xxx/yyy/zzz" # The minimum error level to see in Slack. This is optional; the default is :WARN. # # All log levels are supported, but don't rely on anything less then :WARN # since Slack only allows one message per minute. # config.level = :WARN # You can provide a custom log formatter if you want to. This is optional. # The formatter must construct a JSON blob that adheres to Slack's expected # POST payload for `chat.postMessage`: https://api.slack.com/methods/chat.postMessage # config.formatter = SomeOtherFormatter.new # You can provide an array of regular expressions to ignore certain messages # from being sent to Slack. This is optional. # config.ignore_patterns = [] end
Version data entries
5 entries across 5 versions & 1 rubygems