"eventHandlers": [
{
"type": "drilldown.customUrl",
"options": {
"colId": "dstip",
"condition": "return event.columnId === 'dstip' && event.rawDataRow[event.columnId];",
"newTab": true
}
},
{
"type": "drilldown.customUrl",
"options": {
"colId": "dst_hostname",
"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.