Class: NewRelic::UrlRule

Inherits:
Object
  • Object
show all
Defined in:
lib/new_relic/url_rule.rb

Overview

Represents url mapping rules stored on the server. These rules should be applied to URLs which are not normalized into controller class/action by Rails routes. Insantiated strictly by Marshal.

Defined Under Namespace

Classes: RuleSet

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#eval_orderObject (readonly)

Returns the value of attribute eval_order.



5
6
7
# File 'lib/new_relic/url_rule.rb', line 5

def eval_order
  @eval_order
end

#match_expressionObject (readonly)

Returns the value of attribute match_expression.



5
6
7
# File 'lib/new_relic/url_rule.rb', line 5

def match_expression
  @match_expression
end

#replacementObject (readonly)

Returns the value of attribute replacement.



5
6
7
# File 'lib/new_relic/url_rule.rb', line 5

def replacement
  @replacement
end

#terminate_chainObject (readonly)

Returns the value of attribute terminate_chain.



5
6
7
# File 'lib/new_relic/url_rule.rb', line 5

def terminate_chain
  @terminate_chain
end

Instance Method Details

#apply(url) ⇒ Object



7
8
9
# File 'lib/new_relic/url_rule.rb', line 7

def apply url
  return nil
end