Hi @NickyR – There is no straightforward way to do this for indicators, because indicators do not have an investigation (with a War Room, ability to store files, etc.) like incidents do.
However, it is possible to work around this by combining an indicator general purpose dynamic section script in the indicator layout with `rasterize` screenshots pulled from incidents. The workflow would be:
- Run rasterization of URLs in incidents
- Tag rasterize results with tag "rasterize"
- Create an indicator general purpose dynamic section script and add a section to run it in the URL indicator layout
- The general purpose dynamic section script does the following:
- Get incident IDs associated with the indicator
- Iterate over those incident IDs to see if they have any entries tagged with "rasterize". (Be mindful of the risk of overloading the server if some indicators are associated with an excessive number of incidents. The attached sample code cuts off after 10 incidents max for this reason.)
- If yes, grab the rasterization screenshot from the incident and display it using markdown
Please see the attached sample code for the general purpose dynamic section script. Be sure to test on dev first and use at your own risk!