I have a form with a Table. I am trying to send 'click value' to a view with Tab Switcher. I am not able to get the 'click value' in the search query of the view with the tab switcher and the result is 'No results found'.
search string in the form with the table:
<![CDATA[sourcetype="mslogs" MPSVCCMN_10081 earliest="$earliestTime$" latest="$latestTime$" | rex field=_raw "Mapping service is running [(?<mapping_name>(.+))]sdep"|search mapping_name="$mappingserviceToken$"|chart count(mapping_name) by mapping_name]]>
drill down link: /app/search/tab_test?mappingserviceToken=$click.value$
url after click: ./app/search/tab_test?mappingserviceToken=m_amex_sorter_performance
View with Tab Switcher:
param name=search
(.+))\]\sdep"| rex field=_raw "Total LDTM Creation Time: (?<ldtm_creation_time_ms>((\d+),?)*)ms"|convert rmcomma(LDTM_creation_time_ms)| search "$mappingserviceToken$"|table source DTM_creation_time_ms]] \param If I replace "search "$mappingserviceToken$"" in the search param tag with "search m\_amex\_sorter\_performance" i am able to fetch the result in a table. please let me know how to fetch the click value from the form in the home page to the view with tab switcher on drill down thanks