Hello @livehybrid @PrewinThomas Thanks a lot for your valuable replies i have tried the same but what's happening is , its fetching the values only one time but when clicked other values it's getting pickedup those values. Providing my code for your reference, could you please take a look and provide your guidance on how to solve this {
"type": "splunk.table",
"showProgressBar": false,
"showLastUpdated": false,
"dataSources": {
"primary": "ds_GCK97kyD"
},
"options": {
"backgroundColor": "> themes.defaultBackgroundColor",
"tableFormat": {
"rowBackgroundColors": "> table | seriesByIndex(0) | pick(tableAltRowBackgroundColorsByTheme)"
},
"font": "monospace",
"columnFormat": {
"Severity": {
"data": "> table | seriesByName(\"Severity\") | formatByType(SeverityColumnFormatEditorConfig)",
"rowColors": "> table | seriesByName('Severity') | matchValue(SeverityRowColorsEditorConfig)"
},
"Sev": {
"width": 38,
"data": "> table | seriesByName(\"Sev\") | formatByType(SevColumnFormatEditorConfig)",
"rowColors": "> table | seriesByName('Sev') | matchValue(SevRowColorsEditorConfig)"
},
"Role": {
"width": 51
},
"AlertParams": {
"width": 223
},
"EventID": {
"width": 63
},
"Server": {
"width": 104
},
"Team": {
"width": 101
}
}
},
"context": {
"SeverityColumnFormatEditorConfig": {
"number": {
"thousandSeparated": false,
"unitPosition": "after"
}
},
"SeverityRowColorsEditorConfig": [
{
"match": 1,
"value": "#D41F1F"
},
{
"match": 2,
"value": "#CBA700"
},
{
"match": 3,
"value": "#118832"
}
],
"SevColumnFormatEditorConfig": {
"number": {
"thousandSeparated": false,
"unitPosition": "after"
}
},
"SevRowColorsEditorConfig": [
{
"match": 2,
"value": "#D41F1F"
},
{
"match": 1,
"value": "#CBA700"
},
{
"match": "",
"value": "#118832"
}
]
},
"title": "",
"eventHandlers": [
{
"options": {
"tokens": [
{
"key": "row.event_id.value",
"token": "eventid"
}
]
},
"type": "drilldown.setToken"
}
]
} {
"type": "splunk.markdown",
"options": {
"markdown": "selected eventid : $eventid$",
"fontColor": "#ffffff",
"fontSize": "custom",
"customFontSize": 25
},
"context": {},
"showProgressBar": false,
"showLastUpdated": false
} I am using this markdown just to know whether the interaction is working fine or not , but my actual aim is to parse this table's eventid clicked value into below query `citrix_alerts`
| fields - Component,Alert_type,Country,level,provider,message,alert_time
| search event_id=$eventid$
... View more