<?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: The lookup table 'splunk_instances_info' is invalid - SOS in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52949#M3013</link>
    <description>&lt;P&gt;Thanks for the troubleshooting steps! they helped me narrow down a typo in the transforms.conf file&lt;/P&gt;</description>
    <pubDate>Fri, 24 Feb 2012 19:17:58 GMT</pubDate>
    <dc:creator>romantercero</dc:creator>
    <dc:date>2012-02-24T19:17:58Z</dc:date>
    <item>
      <title>The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52941#M3005</link>
      <description>&lt;P&gt;Installed Splunk on Splunk 2.1 on 4.2.1 but when opening app and app is retrieving information about splunk server in a glimpse of your server, it returns "The lookup table 'splunk_instances_info' is invalid" in pop up bar on menu and no fields are populated in a glimpse of your server frame. &lt;BR /&gt;
Sideview utils 1.2.5 is installed.&lt;BR /&gt;
have not found any otehr issues with splunk server&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 10:19:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52941#M3005</guid>
      <dc:creator>gerald_huddlest</dc:creator>
      <dc:date>2020-09-28T10:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52942#M3006</link>
      <description>&lt;P&gt;This can happen for one of two reasons, depending on the version of Splunk you are running.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;If you are running Splunk 4.3.3:&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;There is a core bug in Splunk 4.3.3 (reference SPL-52862) that causes scheduled search "sos_splunk_instances_info" to fail with an error of this kind:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;Encountered an error while reading file '/opt/splunk/var/run/splunk/dispatchtmp/subsearch_1341344801.10_1341344802.1/prereport_0.csv.gz'.&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;This issue will be fixed in Splunk 4.3.4. SoS 2.2 will have a modified version of the "sos_splunk_instances_info" to overcome this problem until 4.3.4 comes out, but if you want to fix the lookup table manually in the meantime, follow these instructions:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;Go to &lt;CODE&gt;http[s]://[splunkweb hostname]:[splunkweb port]/en-US/app/sos/flashtimeline&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;Run the following search:
&lt;CODE&gt;
| serverinfo
| stats values(*) AS *
| append [entity namespace=None properties/server/license]
| eval title=_raw
| eval master_uri=if(title=="master_uri",entityContent,"")
| eval license_role=case(master_uri=="self","License master",like(master_uri,"http%"),"License slave, reporting to master_uri : \"".master_uri."\"",isnull(master_uri),"n/a")
| append [entity namespace=None properties/authentication/authentication]
| eval title=_raw
| eval auth_method=if(title=="authType",entityContent,"")
| eval auth_method=case(isnull(auth_method),"not available",auth_method=="Splunk","Splunk built-in",isnotnull(auth_method),auth_method)
| appendcols [entity namespace=None server/info]
| appendcols [entity namespace=None server/settings]
| search source=serverinfo OR license_role!="" OR auth_method!=""
| fields sos_server cpu_count host_fqdn total_phys_mem_gb version build os_name cpu_arch SPLUNK_HOME SPLUNK_DB license_role auth_method
| fields - _time _raw
| stats values(*) AS * by sos_server
| outputlookup createinapp=t splunk_instances_info
&lt;/CODE&gt;&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;This should heal the &lt;CODE&gt;$SPLUNK_HOME/etc/apps/sos/lookups/splunk_instances_info.csv&lt;/CODE&gt; lookup table. The problem will go away for good once you upgrade to SoS 2.2 or Splunk 4.3.4.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;If you are running Splunk 4.2, 4.2.1 or 4.2.2:&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;This error can be caused by core Splunk bug SPL-40222 which causes lookup files dynamically created by scheduled searches to be &lt;STRONG&gt;always gzipped&lt;/STRONG&gt;, even when it's explicitly specified otherwise.&lt;/P&gt;

&lt;P&gt;The result is that in Splunk version 4.2, 4.2.1 and 4.2.2 the lookup file &lt;CODE&gt;$SPLUNK_HOME/etc/apps/sos/lookups/splunk_instances_info.csv.gz&lt;/CODE&gt; is created when the app actually expects &lt;CODE&gt;splunk_instances_info.csv&lt;/CODE&gt;.&lt;/P&gt;

&lt;P&gt;The fix is to upgrade Splunk to 4.2.3 or higher.&lt;/P&gt;

&lt;P&gt;If, however, you find yourself unable to upgrade, there is a simple work-around. In &lt;CODE&gt;$SPLUNK_HOME/etc/apps/sos/local/transforms.conf&lt;/CODE&gt; (create this directory if it doesn't exist), add the following stanza :&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;[splunk_instances_info]&lt;BR /&gt;
filename = splunk_instances_info.csv.gz&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;This should fix the problem without even needing a Splunk restart. Remember to back out this change once you upgrade to 4.2.3 or higher, though!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 10:19:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52942#M3006</guid>
      <dc:creator>hexx</dc:creator>
      <dc:date>2020-09-28T10:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52943#M3007</link>
      <description>&lt;P&gt;Thanks for the response. &lt;BR /&gt;
Under $SPLUNK_HOME/etc/apps/sos/ there isnt a local directory - there is a transforms.conf in the sos/default - changing the stanza in that had no effect. &lt;/P&gt;

&lt;P&gt;Added sos/local directory and copied the default transforms.conf to this directory, amended to .gz but this did not work either. &lt;/P&gt;

&lt;P&gt;Upgrading is a longer option, would like to resolve it in 4.2.1 if possible.&lt;/P&gt;

&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2012 11:40:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52943#M3007</guid>
      <dc:creator>gerald_huddlest</dc:creator>
      <dc:date>2012-01-18T11:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52944#M3008</link>
      <description>&lt;P&gt;So it's possible that another bug is part of the problem here. Can you list the contents of &lt;CODE&gt;$SPLUNK_HOME/etc/apps/sos/lookups&lt;/CODE&gt; for me?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2012 17:31:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52944#M3008</guid>
      <dc:creator>hexx</dc:creator>
      <dc:date>2012-01-18T17:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52945#M3009</link>
      <description>&lt;P&gt;Contents of $SPLUNK_HOME/etc/apps/sos/lookups:&lt;/P&gt;

&lt;P&gt;cron2basic.csv&lt;BR /&gt;
splunk_instances_info.csv.gz&lt;BR /&gt;
version2build.csv&lt;/P&gt;

&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 10:20:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52945#M3009</guid>
      <dc:creator>gerald_huddlest</dc:creator>
      <dc:date>2020-09-28T10:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52946#M3010</link>
      <description>&lt;P&gt;Ok, so you &lt;EM&gt;do&lt;/EM&gt; have the lookup table in there, and in .csv.gz format as predicted. In this condition, the work-around should work like a charm... Let's see what's going on with your transforms.conf definition. Please go to the SoS configuration file viewer, pick transforms.conf, search for &lt;CODE&gt;stanza="splunk_instances_info"&lt;/CODE&gt; and post the resulting stanza here. Alternatively, you can run and provide the output of : &lt;CODE&gt;splunk cmd btool transforms list splunk_instances_info --debug&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 10:20:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52946#M3010</guid>
      <dc:creator>hexx</dc:creator>
      <dc:date>2020-09-28T10:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52947#M3011</link>
      <description>&lt;P&gt;results of transforms.conf search:&lt;BR /&gt;
sos        [splunk_instances_info]&lt;BR /&gt;
system     CAN_OPTIMIZE = True&lt;BR /&gt;
system     CLEAN_KEYS = True&lt;BR /&gt;
system     DEFAULT_VALUE = &lt;BR /&gt;
system     DEST_KEY = &lt;BR /&gt;
system     FORMAT = &lt;BR /&gt;
system     KEEP_EMPTY_VALS = False&lt;BR /&gt;
system     LOOKAHEAD = 4096&lt;BR /&gt;
system     MV_ADD = False&lt;BR /&gt;
system     REGEX = &lt;BR /&gt;
system     SOURCE_KEY = _raw&lt;BR /&gt;
system     WRITE_META = False&lt;BR /&gt;
sos        filename = splunk_instances_info.csv&lt;BR /&gt;
sos_server=DTCI-CBTCPPK01  |  stanza=splunk_instances_info  |  app=sos   &lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 10:20:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52947#M3011</guid>
      <dc:creator>gerald_huddlest</dc:creator>
      <dc:date>2020-09-28T10:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52948#M3012</link>
      <description>&lt;P&gt;Ah! So, the lookup definition still point to the csv file, &lt;EM&gt;not&lt;/EM&gt; to the csv.gz :&lt;BR /&gt;
&lt;CODE&gt;sos        &lt;A href="https://community.splunk.com/..." target="_blank"&gt;splunk_instances_info&lt;/A&gt;&lt;BR /&gt;
sos        filename = splunk_instances_info.csv&lt;/CODE&gt;&lt;BR /&gt;
Are you sure that you have fully followed the instructions of the work-around?&lt;BR /&gt;
You need to have a transforms.conf file in $SPLUNK_HOME/etc/apps/sos/local with the following content :&lt;BR /&gt;
&lt;CODE&gt;[splunk_instances_info]&lt;BR /&gt;
filename = splunk_instances_info.csv.gz&lt;/CODE&gt;&lt;BR /&gt;
This change needs to be reflected in the configuration file viewer search that you just ran.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 10:20:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52948#M3012</guid>
      <dc:creator>hexx</dc:creator>
      <dc:date>2020-09-28T10:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52949#M3013</link>
      <description>&lt;P&gt;Thanks for the troubleshooting steps! they helped me narrow down a typo in the transforms.conf file&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2012 19:17:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52949#M3013</guid>
      <dc:creator>romantercero</dc:creator>
      <dc:date>2012-02-24T19:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52950#M3014</link>
      <description>&lt;P&gt;I am also having this error but I have Splunk 4.3.  Should I try the workaround?&lt;/P&gt;</description>
      <pubDate>Fri, 30 Mar 2012 14:41:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52950#M3014</guid>
      <dc:creator>rcovert</dc:creator>
      <dc:date>2012-03-30T14:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52951#M3015</link>
      <description>&lt;P&gt;This should not be an issue in 4.3. You must be having a different problem.&lt;BR /&gt;&lt;BR /&gt;
- Does this happen even after reloading the home view several times?&lt;BR /&gt;
- Can you show us the contents of $SPLUNK_HOME/etc/apps/sos/lookups/? Is there a splunk_instances_info.csv file there?&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 11:36:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52951#M3015</guid>
      <dc:creator>hexx</dc:creator>
      <dc:date>2020-09-28T11:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52952#M3016</link>
      <description>&lt;P&gt;Yes, I have refreshed the home view several times and still get the error.&lt;/P&gt;

&lt;P&gt;The contents of /opt/splunk/etc/apps/sos/lookups/ is:&lt;/P&gt;

&lt;P&gt;cron2basic.csv&lt;BR /&gt;
version2build.csv&lt;/P&gt;</description>
      <pubDate>Fri, 30 Mar 2012 15:20:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52952#M3016</guid>
      <dc:creator>rcovert</dc:creator>
      <dc:date>2012-03-30T15:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52953#M3017</link>
      <description>&lt;P&gt;Ok so this means that the lookup-populating search hasn't run yet. Normally, it should run :&lt;BR /&gt;&lt;BR /&gt;
- When the app is installed/upgraded &lt;EM&gt;if&lt;/EM&gt; that is done from the UI.&lt;BR /&gt;&lt;BR /&gt;
- Every day at 00:42.&lt;BR /&gt;&lt;BR /&gt;
How did you install the app? How long has it been installed?&lt;/P&gt;</description>
      <pubDate>Fri, 30 Mar 2012 15:32:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52953#M3017</guid>
      <dc:creator>hexx</dc:creator>
      <dc:date>2012-03-30T15:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52954#M3018</link>
      <description>&lt;P&gt;I installed it this morning from the UI.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Mar 2012 15:54:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52954#M3018</guid>
      <dc:creator>rcovert</dc:creator>
      <dc:date>2012-03-30T15:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52955#M3019</link>
      <description>&lt;P&gt;Ok, so it should have run right after the app's installation but didn't. Let's try this :&lt;BR /&gt;&lt;BR /&gt;
- Go to &lt;CODE&gt;http[s]://[splunkweb_hostname]:[splunkweb_port]/en-US/app/sos/flashtimeline&lt;/CODE&gt;&lt;BR /&gt;
- Run the following search:&lt;BR /&gt;&lt;BR /&gt;
&lt;CODE&gt;| `get_splunk_instances_info` | outputlookup createinapp=t splunk_instances_info&lt;/CODE&gt;&lt;BR /&gt;
- Check for the existence of &lt;CODE&gt;splunk_instances_info.csv&lt;/CODE&gt; in &lt;CODE&gt;/opt/splunk/etc/apps/sos/lookups/&lt;/CODE&gt;&lt;BR /&gt;
- Check the functionality of the SoS home view again&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 11:36:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52955#M3019</guid>
      <dc:creator>hexx</dc:creator>
      <dc:date>2020-09-28T11:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52956#M3020</link>
      <description>&lt;P&gt;That worked! Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 02 Apr 2012 14:04:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52956#M3020</guid>
      <dc:creator>rcovert</dc:creator>
      <dc:date>2012-04-02T14:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52957#M3021</link>
      <description>&lt;P&gt;Having the same issue however after running&lt;BR /&gt;
 | &lt;CODE&gt;get_splunk_instances_info&lt;/CODE&gt; | outputlookup createinapp=t splunk_instances_info &lt;/P&gt;

&lt;P&gt;Encountered an error while reading file '/opt/splunk/var/run/splunk/dispatchtmp/subsearch_1341344801.10_1341344802.1/prereport_0.csv.gz'.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 12:01:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52957#M3021</guid>
      <dc:creator>rroberts</dc:creator>
      <dc:date>2020-09-28T12:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52958#M3022</link>
      <description>&lt;P&gt;@rroberts : Thank you for reporting this issue. This bug has been identified as SoS bug SUP-457/ Splunk bug SPL-52862. I have amended my answer at the top to include instructions on how to overcome it until SoS 2.2 is released.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jul 2012 17:17:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52958#M3022</guid>
      <dc:creator>hexx</dc:creator>
      <dc:date>2012-07-04T17:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52959#M3023</link>
      <description>&lt;P&gt;Got an error "malformed eval expected )." Changed to &lt;BR /&gt;
| eval license_role=case(master_uri=="self","License master",like(master_uri,"http%"),"License slave reporting to master_uri : '.master_uri.'" , isnull(master_uri), "n/a")&lt;BR /&gt;
Note single quotes around '.master_uri.' Seemed to solve it.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 12:01:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52959#M3023</guid>
      <dc:creator>rroberts</dc:creator>
      <dc:date>2020-09-28T12:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: The lookup table 'splunk_instances_info' is invalid - SOS</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52960#M3024</link>
      <description>&lt;P&gt;@rroberts : Sorry for the mistake, the &lt;CODE&gt;&amp;lt;code&amp;gt;&lt;/CODE&gt; tags I used to wrap the search string still required backslashes to be escaped. I fixed the string and tested a copy/paste of it with success.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jul 2012 06:38:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/The-lookup-table-splunk-instances-info-is-invalid-SOS/m-p/52960#M3024</guid>
      <dc:creator>hexx</dc:creator>
      <dc:date>2012-07-06T06:38:59Z</dc:date>
    </item>
  </channel>
</rss>

