Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleSelect a component you want to use to send notifications to your team

You can use any component you wish to receive the triggered log messages and send notifications to your team. For example, you can build a custom component or modify the Iguana X Notifications (email), Slack Notifier Adapter, or ServiceNow Adapter to use as your Notifier component.

Screen Shot 2024-04-26 at 12.30.42 PM.pngImage RemovedImage Added

2. Create Notification Rules:

...

Expand
titleMatching Rule - apply notification conditions to components using pattern matching techniques

Every notification rule will have a Matching Rule to assign a notification rule to components. Iguana supports glob expression (*), boolean(and/or), or regular expressions (regex) with Tags to create matching rules. To use regex, simply enclose the expression in slash characters /<regex>/.

Info

IguanaX does not support the

exclamation point for

V6 bang regex syntax !<regex>

.

use /<regex>/ instead

The table below provides an overview of example pattern matching techniques you can combine to create a matching rule.

Type

Sample

Description

Wildcard

*

Apply to all components.

#dev*

Apply to components with #dev followed by 0 or more characters

OR

#prod #dev

Apply to components with either #prod or #dev tags.

AND

"#prod #dev"

Apply to components with both #prod and #dev tags.

Negation

-#prod

Apply to all components without the #prod tag.

“#prod -#dev”

Apply to all components with the #prod tag and without #dev.

...

Expand
titleUse the testing links to generate test alerts based on your configured rules

After creating a notification rule, it can be quickly tested by using the provided testing links.

  1. Use the click here link to have Iguana check your notification rules.

  2. Click on the logs link to view the log created by your notification rules.

Image Added
Info

Note:

you

You can test all conditions expect for the “Log Contains” conditions as this is only triggered on newly generated logs. You can test this out by interacting with your components directly.

Screen Shot 2024-04-24 at 2.39.48 PM.pngImage Removed