Class: Logster::BaseStore

Inherits:
Object
  • Object
show all
Defined in:
lib/logster/base_store.rb

Direct Known Subclasses

RedisStore

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeBaseStore

Returns a new instance of BaseStore.



8
9
10
11
12
13
# File 'lib/logster/base_store.rb', line 8

def initialize
  @max_retention = 60 * 60 * 24 * 7
  @skip_empty = true
  @allow_custom_patterns = false
  @patterns_cache = Logster::Cache.new
end

Instance Attribute Details

#allow_custom_patternsObject

Returns the value of attribute allow_custom_patterns.



6
7
8
# File 'lib/logster/base_store.rb', line 6

def allow_custom_patterns
  @allow_custom_patterns
end

#ignoreObject

Returns the value of attribute ignore.



6
7
8
# File 'lib/logster/base_store.rb', line 6

def ignore
  @ignore
end

#levelObject

Returns the value of attribute level.



6
7
8
# File 'lib/logster/base_store.rb', line 6

def level
  @level
end

#max_retentionObject

Returns the value of attribute max_retention.



6
7
8
# File 'lib/logster/base_store.rb', line 6

def max_retention
  @max_retention
end

#skip_emptyObject

Returns the value of attribute skip_empty.



6
7
8
# File 'lib/logster/base_store.rb', line 6

def skip_empty
  @skip_empty
end

Instance Method Details

#bulk_get(message_keys) ⇒ Object

Get a group of messages by their message_keys



52
53
54
# File 'lib/logster/base_store.rb', line 52

def bulk_get(message_keys)
  not_implemented
end

#check_rate_limits(severity) ⇒ Object

Checks all the existing rate limiters to check if any has been exceeded



87
88
89
# File 'lib/logster/base_store.rb', line 87

def check_rate_limits(severity)
  not_implemented
end

#clearObject

Delete all unprotected messages in the store.



37
38
39
# File 'lib/logster/base_store.rb', line 37

def clear
  not_implemented
end

#clear_allObject

Delete all messages, including protected messages.



42
43
44
# File 'lib/logster/base_store.rb', line 42

def clear_all
  not_implemented
end

#clear_suppression_patterns_cacheObject



190
191
192
# File 'lib/logster/base_store.rb', line 190

def clear_suppression_patterns_cache
  @patterns_cache.clear
end

#countObject

The number of messages currently stored.



32
33
34
# File 'lib/logster/base_store.rb', line 32

def count
  not_implemented
end

#delete(message_key) ⇒ Object



66
67
68
# File 'lib/logster/base_store.rb', line 66

def delete(message_key)
  not_implemented
end

#get(message_key, load_env: true) ⇒ Object

Get a message by its message_key



47
48
49
# File 'lib/logster/base_store.rb', line 47

def get(message_key, load_env: true)
  not_implemented
end

#get_all_ignore_countObject

returns a hash that maps patterns to the number of messages they have suppressed



116
117
118
# File 'lib/logster/base_store.rb', line 116

def get_all_ignore_count
  {}
end

#get_env(message_key) ⇒ Object

Get a message’s env by its message_key



57
58
59
# File 'lib/logster/base_store.rb', line 57

def get_env(message_key)
  not_implemented
end

#get_patterns(set_name) ⇒ Object

returns an array of strings each of which must be convertible to regexp



102
103
104
# File 'lib/logster/base_store.rb', line 102

def get_patterns(set_name)
  not_implemented
end

#increment_ignore_count(pattern) ⇒ Object

increments the number of messages that have been suppressed by a pattern



107
108
# File 'lib/logster/base_store.rb', line 107

def increment_ignore_count(pattern)
end

#insert_pattern(set_name, pattern) ⇒ Object

takes a string as ‘pattern` and places it under the set `set_name`



92
93
94
# File 'lib/logster/base_store.rb', line 92

def insert_pattern(set_name, pattern)
  not_implemented
end

#protect(message_key) ⇒ Object

Mark a message as protected; i.e. it is not deleted by the #clear method



62
63
64
# File 'lib/logster/base_store.rb', line 62

def protect(message_key)
  not_implemented
end

#rate_limited?(ip_address, perform: false, limit: 60) ⇒ Boolean

Returns:

  • (Boolean)


120
121
122
# File 'lib/logster/base_store.rb', line 120

def rate_limited?(ip_address, perform: false, limit: 60)
  not_implemented
end

#register_rate_limit(severities, limit, duration, &block) ⇒ Object

Registers a rate limit on the given severities of logs



82
83
84
# File 'lib/logster/base_store.rb', line 82

def register_rate_limit(severities, limit, duration, &block)
  not_implemented
end

#remove_ignore_count(pattern) ⇒ Object

removes number of suppressed messages by a pattern



111
112
# File 'lib/logster/base_store.rb', line 111

def remove_ignore_count(pattern)
end

#remove_pattern(set_name, pattern) ⇒ Object

takes a string as ‘pattern` and removes it from the set `set_name`



97
98
99
# File 'lib/logster/base_store.rb', line 97

def remove_pattern(set_name, pattern)
  not_implemented
end

#replace_and_bump(message, save_env: true) ⇒ Object

Modify the saved message to the given one (identified by message.key) and bump it to the top of the latest list



21
22
23
# File 'lib/logster/base_store.rb', line 21

def replace_and_bump(message, save_env: true)
  not_implemented
end

#report(severity, progname, msg, opts = {}) ⇒ Object



124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
# File 'lib/logster/base_store.rb', line 124

def report(severity, progname, msg, opts = {})
  return if (!msg || (String === msg && msg.empty?)) && skip_empty
  return if level && severity < level

  message = Logster::Message.new(severity, progname, msg, opts[:timestamp], count: opts[:count])

  env = opts[:env] || {}
  backtrace = opts[:backtrace]
  if Hash === env && env[:backtrace]
    # Special - passing backtrace through env
    backtrace = env.delete(:backtrace)
  end

  message.populate_from_env(env)

  if backtrace
    if backtrace.respond_to? :join
      backtrace = backtrace.join("\n")
    end
    message.backtrace = backtrace
  else
    message.backtrace = caller.join("\n")
  end

  return if ignore && ignore.any? do |pattern|
    if message =~ pattern
      val = Regexp === pattern ? pattern.inspect : pattern.to_s
      increment_ignore_count(val)
      true
    end
  end

  if Logster.config.enable_custom_patterns_via_ui || allow_custom_patterns
    custom_ignore = @patterns_cache.fetch do
      Logster::SuppressionPattern.find_all(store: self)
    end
    return if custom_ignore.any? do |pattern|
      if message =~ pattern
        increment_ignore_count(pattern.inspect)
        true
      end
    end
  end

  similar = nil

  if Logster.config.allow_grouping
    key = self.similar_key(message)
    similar = get(key, load_env: false) if key
  end

  if similar
    has_env = !similar.env.nil? && !similar.env.empty?
    if similar.count < Logster::MAX_GROUPING_LENGTH && !has_env
      similar.env = get_env(similar.key) || {}
    end
    save_env = similar.merge_similar_message(message)

    replace_and_bump(similar, save_env: save_env || has_env)
    similar
  else
    save message
    message
  end
end

#save(message) ⇒ Object

Save a new message at the front of the latest list.



16
17
18
# File 'lib/logster/base_store.rb', line 16

def save(message)
  not_implemented
end

#similar_key(message) ⇒ Object

Check if another message with the same grouping_key is already stored. Returns the similar message’s message.key



27
28
29
# File 'lib/logster/base_store.rb', line 27

def similar_key(message)
  not_implemented
end

#solve(message_key) ⇒ Object

Solve a particular message, causing all old messages with matching version and backtrace to be deleted (report should delete any solved messages when called)



77
78
79
# File 'lib/logster/base_store.rb', line 77

def solve(message_key)
  not_implemented
end

#unprotect(message_key) ⇒ Object

Clear the protected mark for a message.



71
72
73
# File 'lib/logster/base_store.rb', line 71

def unprotect(message_key)
  not_implemented
end