Sha256: 4a4fa5deb3ce737e235ece69de35b58959a2bd3e0ed2a5999ca5574a2ad8c7cf

Contents?: true

Size: 1.49 KB

Versions: 34

Compression:

Stored size: 1.49 KB

Contents

module Timber
  module Events
    # Allows for custom events that aren't covered elsewhere.
    #
    # Custom events can be used to encode information about events that are central
    # to your line of business like receiving credit card payments, saving a draft of a post,
    # or changing a user's password.
    #
    # For examples of logging custom events see {Logger}.
    class Custom < Timber::Event
      attr_reader :type, :message, :data

      # Instantiates a new custom event that can be logged. See {Logger} for examples
      # on logging custom events.
      #
      # @param [Hash] attributes the options to create a custom event with.
      # @option attributes [Symbol] :type *required* The custom event type. This should be in
      #   snake case. Example: `:my_custom_event`.
      # @option attributes [String] :message *required* The message to be logged.
      # @option attributes [Hash] :data A hash of JSON encodable data to be stored with the
      #   log line.
      def initialize(attributes)
        @type = attributes[:type] || raise(ArgumentError.new(":type is required"))
        @message = attributes[:message] || raise(ArgumentError.new(":message is required"))
        @data = attributes[:data]
      end

      def to_hash
        {Timber::Util::Object.try(type, :to_sym) => data}
      end
      alias to_h to_hash

      def as_json(_options = {})
        {:custom => to_hash}
      end

      def to_json(options = {})
        as_json().to_json(options)
      end
    end
  end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
timber-2.0.24 lib/timber/events/custom.rb
timber-2.0.23 lib/timber/events/custom.rb
timber-2.0.22 lib/timber/events/custom.rb
timber-2.0.21 lib/timber/events/custom.rb
timber-2.0.20 lib/timber/events/custom.rb
timber-2.0.19 lib/timber/events/custom.rb
timber-2.0.17 lib/timber/events/custom.rb
timber-2.0.16 lib/timber/events/custom.rb
timber-2.0.15 lib/timber/events/custom.rb
timber-2.0.14 lib/timber/events/custom.rb
timber-2.0.12 lib/timber/events/custom.rb
timber-2.0.11 lib/timber/events/custom.rb
timber-2.0.10 lib/timber/events/custom.rb
timber-2.0.9 lib/timber/events/custom.rb
timber-2.0.8 lib/timber/events/custom.rb
timber-2.0.7 lib/timber/events/custom.rb
timber-2.0.6 lib/timber/events/custom.rb
timber-2.0.5 lib/timber/events/custom.rb
timber-2.0.4 lib/timber/events/custom.rb
timber-2.0.3 lib/timber/events/custom.rb