Analyze package
- Updated: 2024/01/22
Analyze package
Use the actions in the Analyze package to specify the actions and variables to use in the Bot Insight dashboard and widgets. The Analyze package enables you to perform transactional analytics for the data that is logged by the variables when the bot runs.
- To download an individual package (updated in an Automation 360 release where you want only the package), use this
URL:
https://aai-artifacts.my.automationanywhere.digital/packages/<package-file-name>-<version.number>.jar
- For Analyze package, the naming convention is:
bot-command-analyze-<version.number>.jar
For example,
bot-command-analyze-2.8.0-20230427-091823.jar
For detailed steps on downloading a package and manually adding it to the Control Room, see Add packages to the Control Room.
Actions in the Analyze package
The Analyze package includes the following actions:
Action | Description |
---|---|
Close | Closes a transaction.
|
Open | Opens a transaction. Insert the actions that you want to include for analysis between the Open and Close actions. In the Transaction name field, enter a transaction name. |
- If you want to capture all the data within the loop in the Bot Insight dashboard, use the Open
and Close
actions inside the loop.
Example: If you are using the For each row in CSV/TXT iterator in the Loop action to read values from each row in a Microsoft Excel sheet, use the Open and Close actions inside this loop to analyze and capture the data of each row in the Bot Insight dashboard.
- If you want to capture only the last interpreted data of the loop in the Bot Insight dashboard, use the Open
and Close
actions outside the loop.
Example: If you are using the For each row in CSV/TXT iterator in the Loop action to read values from each row in a Microsoft Excel sheet, use the Open and Close actions outside this loop to capture only the data in the last row of the Excel sheet in the Bot Insight dashboard.
- If you want to analyze and capture error messages during bot
execution in the Bot Insight dashboard, use the
Open and Close
actions with an Error handler
package.Example:
- Create a bot with multiple If actions within a loop.
- To capture errors, within every If action, add an action.
- Inside the loop, after every If action, add the action to capture the errors inside every If condition on the Bot Insight dashboard for analysis.