Hello Splunkers,
I am developing a XML code, and I want create a drilldown link in the my map.
Follows the xml part:
<row> <map> <title>Google Maps - External</title> <searchstring>sourcetype=srx_traffic cliente=$cliente$ | iplocation destination_address NOT destination_address=10.0.0.0/23 | geostats count</searchstring> <option name="mapping.fieldColors">{destination_address:#B22222}</option> <option name="mapping.seriesColors">[0x0000FF]</option> </map> </row>
Now, I want when click in the map, I need create a table with destination_address. I tried with <drilldown> but not works.
My search to create a table is:
sourcetype=srx_traffic cliente=ABC| iplocation destination_address NOT destination_address=10.0.0.0/23 | search lat>=33.75000 lat<45.00000 lon>=-90.00000 lon<-67.50000 | stats values(destination_address) as "Endereços Ips"
I saw in "Simple XML Reference" located at http://docs.splunk.com/Documentation/Splunk/6.0.1/Viz/PanelreferenceforSimplifiedXML, but I did not found anything about create it.
Any ideas?
Tks.