<?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 Splunk IT Service Intelligence: How to search for entities itsi_role and other Info Fields in Splunk ITSI</title>
    <link>https://community.splunk.com/t5/Splunk-ITSI/Splunk-IT-Service-Intelligence-How-to-search-for-entities-itsi/m-p/411874#M981</link>
    <description>&lt;P&gt;Hello, everybody!&lt;/P&gt;

&lt;P&gt;I discovered some entities into ITSI using standard Operating System Module saved searches. &lt;BR /&gt;
I see my entities under App: IT Service Intelligence -&amp;gt; Configure -&amp;gt; Entities. &lt;BR /&gt;
When I click to any entity, I see its Name, Description, Aliases and some Info Fields, itsi_role among them. I wonder, how can I search for the table of all registered entities and their itsi_role? I checked &lt;STRONG&gt;| inputlookup itsi_entities&lt;/STRONG&gt; but this lookup does not store Info Fields and their values.&lt;/P&gt;

&lt;P&gt;Thank you in advance!&lt;/P&gt;</description>
    <pubDate>Wed, 30 Sep 2020 00:50:37 GMT</pubDate>
    <dc:creator>oshirnin</dc:creator>
    <dc:date>2020-09-30T00:50:37Z</dc:date>
    <item>
      <title>Splunk IT Service Intelligence: How to search for entities itsi_role and other Info Fields</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Splunk-IT-Service-Intelligence-How-to-search-for-entities-itsi/m-p/411874#M981</link>
      <description>&lt;P&gt;Hello, everybody!&lt;/P&gt;

&lt;P&gt;I discovered some entities into ITSI using standard Operating System Module saved searches. &lt;BR /&gt;
I see my entities under App: IT Service Intelligence -&amp;gt; Configure -&amp;gt; Entities. &lt;BR /&gt;
When I click to any entity, I see its Name, Description, Aliases and some Info Fields, itsi_role among them. I wonder, how can I search for the table of all registered entities and their itsi_role? I checked &lt;STRONG&gt;| inputlookup itsi_entities&lt;/STRONG&gt; but this lookup does not store Info Fields and their values.&lt;/P&gt;

&lt;P&gt;Thank you in advance!&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:50:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Splunk-IT-Service-Intelligence-How-to-search-for-entities-itsi/m-p/411874#M981</guid>
      <dc:creator>oshirnin</dc:creator>
      <dc:date>2020-09-30T00:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk IT Service Intelligence: How to search for entities itsi_role and other Info Fields</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Splunk-IT-Service-Intelligence-How-to-search-for-entities-itsi/m-p/411875#M982</link>
      <description>&lt;P&gt;Entities and their info fields are stored in the KVSTORE.  You can start with this search and modify as needed:&lt;/P&gt;

&lt;P&gt;| rest splunk_server=local /servicesNS/nobody/SA-ITOA/itoa_interface/entity&lt;BR /&gt;
       fields="_key,title,identifier,informational,identifying_name"&lt;BR /&gt;
| eval value=spath(value,"{}")&lt;BR /&gt;
| mvexpand value&lt;BR /&gt;
| eval entity_title=spath(value, "title"),&lt;BR /&gt;
       entity_name=spath(value, "identifying_name"),&lt;BR /&gt;
       entity_aliases=mvzip(spath(value, "identifier.fields{}"),spath(value, "identifier.values{}"),"="),&lt;BR /&gt;
       entity_info=mvzip(spath(value, "informational.fields{}"),spath(value, "informational.values{}"),"=")&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:58:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Splunk-IT-Service-Intelligence-How-to-search-for-entities-itsi/m-p/411875#M982</guid>
      <dc:creator>mperry_splunk</dc:creator>
      <dc:date>2020-09-30T00:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk IT Service Intelligence: How to search for entities itsi_role and other Info Fields</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Splunk-IT-Service-Intelligence-How-to-search-for-entities-itsi/m-p/411876#M983</link>
      <description>&lt;P&gt;@mperry_splunk, hello! Sorry for the long response time, thank you for the patience.&lt;/P&gt;

&lt;P&gt;Thank you for the query, it gives that I wanted.&lt;/P&gt;

&lt;P&gt;By the way, just to know, is there any way to get the same data without using REST? For me, REST is something like for remote querying. It's strange for me to see [PRE]rest splunk_server=&lt;STRONG&gt;local&lt;/STRONG&gt;[/PRE]. Is &lt;STRONG&gt;rest&lt;/STRONG&gt; command effective enough to query large data? Is it possible to find a definition of KVStore and query it with local commands, maybe inputlookup?&lt;/P&gt;

&lt;P&gt;I do not have to much experience with Splunk and maybe confuse this.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jul 2019 10:33:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Splunk-IT-Service-Intelligence-How-to-search-for-entities-itsi/m-p/411876#M983</guid>
      <dc:creator>oshirnin</dc:creator>
      <dc:date>2019-07-01T10:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk IT Service Intelligence: How to search for entities itsi_role and other Info Fields</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Splunk-IT-Service-Intelligence-How-to-search-for-entities-itsi/m-p/411877#M984</link>
      <description>&lt;P&gt;The '|rest' command is part of SPL, it is a generating command.  You do not need to be remote, it is used in the UI.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2019 15:32:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Splunk-IT-Service-Intelligence-How-to-search-for-entities-itsi/m-p/411877#M984</guid>
      <dc:creator>dbot2001</dc:creator>
      <dc:date>2019-08-08T15:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk IT Service Intelligence: How to search for entities itsi_role and other Info Fields</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Splunk-IT-Service-Intelligence-How-to-search-for-entities-itsi/m-p/411878#M985</link>
      <description>&lt;P&gt;oshirnin...  as dbot2001 said, you use the REST command inside of Splunk SPL.  &lt;/P&gt;

&lt;P&gt;The way I get definitions of fields/values from the KVstore is to run the REST above and look at the contents of 'value'. This will show the KV pairs that you're looking for.&lt;/P&gt;

&lt;P&gt;You can do the same for just about all of the ITSI REST endpoints that are in the documentation.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2019 15:55:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Splunk-IT-Service-Intelligence-How-to-search-for-entities-itsi/m-p/411878#M985</guid>
      <dc:creator>mperry_splunk</dc:creator>
      <dc:date>2019-08-08T15:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk IT Service Intelligence: How to search for entities itsi_role and other Info Fields</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/Splunk-IT-Service-Intelligence-How-to-search-for-entities-itsi/m-p/505033#M2071</link>
      <description>&lt;P&gt;For ITSI v4.4 and above, you'll need to add&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;report_as=text&lt;/LI-CODE&gt;&lt;P&gt;to the | rest portion of the SPL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/ITSI/4.4.0/RESTAPI/ITSIRESTAPIreference#ITSI_REST_API_usage_details" target="_blank" rel="noopener"&gt;ITSI REST API reference&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jun 2020 16:53:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/Splunk-IT-Service-Intelligence-How-to-search-for-entities-itsi/m-p/505033#M2071</guid>
      <dc:creator>akheraj_splunk</dc:creator>
      <dc:date>2020-06-18T16:53:18Z</dc:date>
    </item>
  </channel>
</rss>

