Skip to main content

Web - Transactions

Web - Transactions

  • Web transactions are used to map UXM Web agent data into logical names that businesses can report on.
  • Each transaction gets it’s own SLA and Apdex score and can be used to report performance on.
  • Go to Administration > Real user (Web) > Web Transactions.

Admin_-_Web_Transactions.png

 

  • Monitored Web page Title, Identifier, Url and query/hash can be used to report on.
  • Identifier is the object that the user clicked on or action in browser.
    For example, consider the expression: heading1

Here we would look for the identifier that contains heading1.

Edit_-_Web_Transactions.png

 

Text can be tested with string comparisons and regular expression.

See regular expression section for example

WebTransactions3.png

 

Use Check for matches to see if the rules matches any received Web agent events:

WebTransactions4.png

Using Regex

To learn more about regular expressions look at regexr.com, you can test the regular expressions at <https://regex101.com/>. (There you can input your expression and view a detailed explanation of each element)

Please note that all regexes needs to be escaped properly.

Examples:

Map URL that contains 2 dynamic values

URL: <https://site.domain/folder/node/1808/post/1423> Regex:/node/\d+(.\d2)?/post/\d+(.\d2)?$

d+(.\d2)? tells that it should match numbers
$ tells that match should end after the numbers

Regex101.com can show you what is matched.