Versions Compared

Key

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

...

The first step is properly parsing command line parameters the way the shell interpreter would parse them for interpretation before they are handed to the executable that will operate on those arguments.

Operator Usage in Easy Mode

  1. Click + on the parent node.
  2. Enter the Markup Jira Text operator in the search field and select the operator from the Results to open the operator form.
  3. In the Table drop-down, enter or select the table containing the data to run this operator on.
  4. In the Mask Table drop-down, enter or select the table that you want to mask.
  5. In the Keyword Column drop-down, enter or select the keyword column in a mask table to be replaced.
  6. In the Replace Column drop-down, enter or select the column name of a value that will replace the keyword in a mask table.
  7. Click Run to view the result.
  8. Click Save to add the operator to the playbook.
  9. Click Cancel to discard the operator form.

Usage Details

LQL Command

Code Block
matchPattern(table:TableReference, stringToMatch:String, patternTable:TableReference, pattern:String, tags:String, matchType:String)

...

Shortly, this operator does following procedures, for each row in a table it will do regex matching to each of the pattern column values inside patternTable, and if it matches then assigns the tag that you provided in tags column.

Example

Input
table that contains the command lines for auto tagging (commandsTable)

...