<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to map link for the existing splunk dashboard dynamically? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688348#M56367</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/205249"&gt;@karthi2809&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;check the values of payLoadInterface from the search, because they must match with the related values in the lookup, in this way, you can join them and have the Link.&lt;/P&gt;&lt;P&gt;about the Status condition, remove it because you don't have the Status field in the stats command.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
    <pubDate>Wed, 22 May 2024 14:06:11 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2024-05-22T14:06:11Z</dc:date>
    <item>
      <title>How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688017#M56308</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;How to map splunk dashboard link based on the values&amp;nbsp; on the field. And i have existing dashboard so i need to map based on the values onclick the link it will open the existing dashboard&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;TABLE border="1" width="44.44408539351938%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%" height="24px"&gt;Name&lt;/TD&gt;&lt;TD width="33.333333333333336%" height="24px"&gt;link&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%" height="24px"&gt;abc&lt;/TD&gt;&lt;TD width="33.333333333333336%" height="24px"&gt;click here&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%" height="24px"&gt;bbc&lt;/TD&gt;&lt;TD width="33.333333333333336%" height="24px"&gt;click here&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%" height="24px"&gt;ccd&lt;/TD&gt;&lt;TD width="33.333333333333336%" height="24px"&gt;clik here&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2024 12:48:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688017#M56308</guid>
      <dc:creator>karthi2809</dc:creator>
      <dc:date>2024-05-20T12:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688021#M56309</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/205249"&gt;@karthi2809&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;you could put the list of links and names in a lookup (called e.g. links.csv) and containing at least two columns (Name, Link).&lt;/P&gt;&lt;P&gt;Then you could run something ike this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt; &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;title&amp;gt;Use Cases&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;
            | inputlookup links.csv 
            | sort Name Link
            | table Name Link
          &amp;lt;/query&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;10&amp;lt;/option&amp;gt;
        &amp;lt;option name="dataOverlayMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;row&amp;lt;/option&amp;gt;
        &amp;lt;option name="percentagesRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="totalsRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
        &amp;lt;drilldown&amp;gt;
          &amp;lt;condition match="isnotnull($row.Link$)"&amp;gt;
            &amp;lt;link target="_blank"&amp;gt;/app/your_app/$row.Link$&amp;lt;/link&amp;gt;
          &amp;lt;/condition&amp;gt;
          &amp;lt;condition match="isnull($row.Link$)"/&amp;gt;
        &amp;lt;/drilldown&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;In this way with a click you run your dashboard.&lt;/P&gt;&lt;P&gt;If the dashboards are in different apps then the present one, you have to add the full path.&lt;/P&gt;&lt;P&gt;&amp;nbsp;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2024 13:02:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688021#M56309</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-05-20T13:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688199#M56340</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;This the query which i am trying to map Interfacename and link .So i appended the inputlookup with base query .In base query also i have interface name.So i am trying to map the values.But the link is not populating in the table.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="mulesoft"  environment=PRD
| rename content.payload.Status as Status
    | append [ inputlookup link.csv | table Link InterfaceName]
| stats  values(content.payload.InterfaceName) as payLoadInterface values(content.payload.ErrorMessage) as ErrorMsg earliest(timestamp) as Timestamp  values(priority) as Priority values(tracePoint) as Tracepoint values(Link) as Link values(InterfaceName) as Interface by correlationId 
| eval names = if ( isnull ( mvfind ( message, "DISABLED" ) ), null, message ) 
| eval Response= coalesce(SuccessResponse,Successresponse,msg,names,ErrorMsg)
| eval InterfaceName= coalesce(Interface,payLoadInterface)
| table Status Timestamp InterfaceName Link Response correlationId message Priority Tracepoint|fields - message Tracepoint Priority|search InterfaceName="*" | where Status LIKE ("%")|sort -Timestamp&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 17:16:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688199#M56340</guid>
      <dc:creator>karthi2809</dc:creator>
      <dc:date>2024-05-21T17:16:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688253#M56349</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/205249"&gt;@karthi2809&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;in the lookup there isn't the correlationId field, how can you correlate the lookup with the results? what is the common key to use gor the correlation?&lt;/P&gt;&lt;P&gt;Then you don't need to append the lookup to the search, you can use the lookup command to join the link to the events by the correlationId (or another field).&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 07:06:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688253#M56349</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-05-22T07:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688261#M56353</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need to map based on interface name with link&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 08:50:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688261#M56353</guid>
      <dc:creator>karthi2809</dc:creator>
      <dc:date>2024-05-22T08:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688266#M56355</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/205249"&gt;@karthi2809&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;to join the content of a lookup with a search, you must have a common key, what's this key?&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 08:43:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688266#M56355</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-05-22T08:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688283#M56358</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;In lookup file i have two fields one is interface name another one is link based on interface name we can map Right.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 12:06:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688283#M56358</guid>
      <dc:creator>karthi2809</dc:creator>
      <dc:date>2024-05-22T12:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688313#M56360</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/205249"&gt;@karthi2809&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;have you in the search a nother field with the values to correlate with interfacename?&lt;/P&gt;&lt;P&gt;field values must be the same.&lt;/P&gt;&lt;P&gt;if yes, you can use this field to join the lookup.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 12:32:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688313#M56360</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-05-22T12:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688324#M56361</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;yes i have another field as interfacename is given below and in my lookup file i have same name as Interfacename . But i dont know to map values using append.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;values(content.payload.InterfaceName) as InterfaceName&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 12:57:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688324#M56361</guid>
      <dc:creator>karthi2809</dc:creator>
      <dc:date>2024-05-22T12:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688327#M56362</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/205249"&gt;@karthi2809&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;at first rename your field before the stats command, then don't use append but the lookup command (&lt;A href="https://docs.splunk.com/Documentation/Splunk/9.2.1/SearchReference/Lookup" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/9.2.1/SearchReference/Lookup&lt;/A&gt;).&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="mulesoft"  environment=PRD
| rename 
     content.payload.Status AS Status 
     content.payload.InterfaceName) AS payLoadInterface
     content.payload.ErrorMessage AS ErrorMsg 
| lookup link.csv Link InterfaceName AS payLoadInterface OUTPUT Link
| stats  
     values(payLoadInterface) AS payLoadInterface
     values(ErrorMsg) AS ErrorMsg
     earliest(timestamp) AS Timestamp  
     values(priority) AS Priority 
     values(tracePoint) AS Tracepoint 
     values(Link) AS Link 
     values(payLoadInterface) AS payLoadInterface 
     BY correlationId 
| eval 
     names=if(isnull(mvfind(message,"DISABLED")),null,message), 
     Response=coalesce(SuccessResponse,Successresponse,msg,names,ErrorMsg),
     payLoadInterface=coalesce(Interface,payLoadInterface)
| table Status Timestamp InterfaceName Link Response correlationId message Priority Tracepoint
| search payLoadInterface="*" 
| sort -Timestamp&lt;/LI-CODE&gt;&lt;P&gt;Then the condition Status LIKE (,"%") is wrong, what do you want to check?.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 13:10:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688327#M56362</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-05-22T13:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688344#M56364</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;1.Still i am not able to get Link values in the table .&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;2. Then the condition Status LIKE (,"%") is wrong, what do you want to check?. ---&amp;gt;checking for Status&amp;nbsp; as *&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 14:01:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688344#M56364</guid>
      <dc:creator>karthi2809</dc:creator>
      <dc:date>2024-05-22T14:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688348#M56367</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/205249"&gt;@karthi2809&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;check the values of payLoadInterface from the search, because they must match with the related values in the lookup, in this way, you can join them and have the Link.&lt;/P&gt;&lt;P&gt;about the Status condition, remove it because you don't have the Status field in the stats command.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 14:06:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688348#M56367</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-05-22T14:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688359#M56368</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;This my lookup&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="50%" height="24px"&gt;InterfaceName&lt;/TD&gt;&lt;TD width="50%" height="24px"&gt;Link&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="50%" height="24px"&gt;DSR_TEST&lt;/TD&gt;&lt;TD width="50%" height="24px"&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/9.2.1/SearchReference/Lookup?_gl=1*1w7wkaf*_ga*MTYzMTg2Njc5NC4xNzExOTgxMTg4*_ga_GS7YF8S63Y*MTcxNjM4NTE1Ni41OS4xLjE3MTYzODYxMDMuNTYuMC4w*_ga_5EPM2P39FV*MTcxNjM4NTE1Ni4xNTcuMS4xNzE2Mzg2MTAzLjAuMC4zMjM3MzE2MTE.&amp;amp;_ga=2.25230836.839088300.1716203378-1631866794.1711981188" target="_blank" rel="noopener"&gt;https://docs.splunk.com/Documentation/Splunk/9.2.1/SearchReference/Lookup?_gl=1*1w7wkaf*_ga*MTYzMTg2Njc5NC4xNzExOTgxMTg4*_ga_GS7YF8S63Y*MTcxNjM4NTE1Ni41OS4xLjE3MTYzODYxMDMuNTYuMC4w*_ga_5EPM2P39FV*MTcxNjM4NTE1Ni4xNTcuMS4xNzE2Mzg2MTAzLjAuMC4zMjM3MzE2MTE.&amp;amp;_ga=2.25230836.839088300.1716203378-1631866794.1711981188&lt;/A&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="50%" height="24px"&gt;DSR_TEST1&lt;/TD&gt;&lt;TD width="50%" height="24px"&gt;&lt;A href="https://community.splunk.com/t5/Splunk-Search/How-to-Combine-search-query-with-a-lookup-file-with-one-common/td-p/296885?sort=votes" target="_blank" rel="noopener"&gt;https://community.splunk.com/t5/Splunk-Search/How-to-Combine-search-query-with-a-lookup-file-with-one-common/td-p/296885?sort=votes&lt;/A&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="50%" height="24px"&gt;DSR_TEST2&lt;/TD&gt;&lt;TD width="50%" height="24px"&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/9.2.1/SearchReference/Gauge" target="_blank" rel="noopener"&gt;https://docs.splunk.com/Documentation/Splunk/9.2.1/SearchReference/Gauge&lt;/A&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Wed, 22 May 2024 15:29:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688359#M56368</guid>
      <dc:creator>karthi2809</dc:creator>
      <dc:date>2024-05-22T15:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688360#M56369</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/205249"&gt;@karthi2809&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;do you have in&amp;nbsp;&lt;SPAN&gt;payLoadInterface&amp;nbsp;the same values "aaa", "bbb", "ccc" ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;if yes, you can join the Link to the events, otherwise, it isn't possible.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Ciao.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Giuseppe&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 14:28:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688360#M56369</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-05-22T14:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688364#M56370</link>
      <description>&lt;P&gt;Yes i copy pasted the same &lt;SPAN&gt;payLoadInterface&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;into csv file.But i dont know why is not coming .And how to check the values from lookup file is getting populated&lt;BR /&gt;&lt;BR /&gt;The values like&amp;nbsp;DSR_TEST,DSR_TEST1,DSR_TEST2&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 15:30:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688364#M56370</guid>
      <dc:creator>karthi2809</dc:creator>
      <dc:date>2024-05-22T15:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688401#M56374</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/205249"&gt;@karthi2809&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;check if in the Lookup definition you flagged the case sensitivity flag, in case unflag it.&lt;/P&gt;&lt;P&gt;see next time!&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 06:22:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688401#M56374</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-05-23T06:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688402#M56375</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Got it thanks , I dint defined in lookup definition. Now its mapping .One more thing i just want to add table name as URL in that it will shows Click here. Inside that I need to map the URL.&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 06:25:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688402#M56375</guid>
      <dc:creator>karthi2809</dc:creator>
      <dc:date>2024-05-23T06:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to map link for the existing splunk dashboard dynamically?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688404#M56377</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/205249"&gt;@karthi2809&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;you could add a fixed field using eval, maintaining the link in the search (otherwise you cannot pass it to the drilldown) not displaying the Link itself in the panel (using the &amp;lt;fields&amp;gt;&amp;lt;/fields&amp;gt; tag.&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated&lt;SPAN&gt;&amp;nbsp; ;.)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 06:32:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-map-link-for-the-existing-splunk-dashboard-dynamically/m-p/688404#M56377</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-05-23T06:32:57Z</dc:date>
    </item>
  </channel>
</rss>

