Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

You can use search/filter criteria to specify which components are displayed in the Dashboard.

The Dashboard can be filtered using the Search Bar or by creating Filter Tags.

Screen Shot 2024-04-25 at 5.03.45 PM.png

When using the search bar, you can search Component Names and Tags using two types of matching strategies:

 1) Simple string searching (with glob expressions) - simple pattern matching

Iguana X supports searching using boolean and glob expression pattern matching. When you click on component #tags, they are added to the Dashboard filter as an “OR“, essentially created a list of the matching component tags you want to display on the Dashboard.

Here are a few useful techniques for filtering the Dashboard:

-- Search strings to match components names/tags with hl7 or #epic tags.
hl7 #epic 

-- Use quotations " " to match components with #prod AND #dev tags.
“#prod #dev“

-- Use negation "-" to match components with hl7 but without the #epic tag.
hl7 -#epic
 2) Regular expressions (regex) - advanced pattern matching

You can use regular expressions to search and filter your Dashboard screen. To use regex, simply enclose your expression within forward slashes (/<regex>/).

There are many ways you can use regex queries. Here are a few simple, and useful, things that you can do with regex:

-- Use an anchor "^" to match all components beginning with a value 
/^hl7/

-- Use a pipe "|" to match all components beggining with hl7 OR #epic tag
/^hl7|#epic/

-- Search tags 

Iguana X does not support the lookahead/lookbehind regex queries (for example “/?=…/“).

  • No labels