PHP MVC

By default, for most MVC frameworks, the business transaction is named using the controller:action. For modular MVC frameworks, the business transaction is named using the module:controller:action.

You can modify detection to match only a portion of the module, controller or view name (such as "Begins with" or "Contains") or on a regular expression, rather than the default which matches the entire name using "Equals" for the match condition.

You cannot configure a single match rule that matches on both the controller and the action. You can create MVC custom match rules using any of the following:

  • controller name only
  • action name only
  • module name and action
  • module and controller name