"eventHandlers": [ { "type": "drilldown.customUrl", "options": { "colId": "dstip", "url": "https://example.com/$row.dstip.value$", "condition": "return event.columnId === 'dstip' && event.rawDataRow[event.columnId];", "newTab": true } }, { "type": "drilldown.customUrl", "options": { "colId": "dst_hostname", "url": "https://example.com?query=$row.dst_hostname.value$", "condition": "return event.columnId === 'dst_hostname' && event.rawDataRow[event.columnId];", "newTab": true } } ] I am using drilldown in the table graph of Dashboard studio, and when there is a row in the table, I want to make the drilldown corresponding to the column only occur when I click the value of the column. How do I do that? Drilldown of dst_hostname occurs even when the value of dstip is clicked, and drilldown occurs even when the value of a column that is not set is clicked.
... View more