Class: Observed::Reporter

Inherits:
Object
  • Object
show all
Includes:
Configurable, Pluggable
Defined in:
lib/observed/reporter.rb,
lib/observed/reporter/regexp_matching.rb,
lib/observed/reporter/report_formatting.rb

Defined Under Namespace

Modules: RegexpMatching, ReportFormatting

Instance Method Summary collapse

Methods included from Pluggable

included

Methods included from Configurable

#configure, #get_attribute_value, #has_attribute_value?, included, #initialize

Instance Method Details

#match(tag) ⇒ Object

Parameters:

  • tag (String)

Raises:

  • (NotImplementedError)


14
15
16
# File 'lib/observed/reporter.rb', line 14

def match(tag)
  raise NotImplementedError.new
end

#report(tag, time, data) ⇒ Object

Raises:

  • (NotImplementedError)


18
19
20
# File 'lib/observed/reporter.rb', line 18

def report(tag, time, data)
  raise NotImplementedError.new
end