<?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: RPM detection in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/RPM-detection/m-p/55773#M13618</link>
    <description>&lt;P&gt;This is not possible, since i don't know your environment nor your requirement. &lt;/P&gt;</description>
    <pubDate>Fri, 16 Jan 2015 11:33:17 GMT</pubDate>
    <dc:creator>MuS</dc:creator>
    <dc:date>2015-01-16T11:33:17Z</dc:date>
    <item>
      <title>RPM detection</title>
      <link>https://community.splunk.com/t5/Splunk-Search/RPM-detection/m-p/55766#M13611</link>
      <description>&lt;P&gt;How to detect if new rpm installed in Centos OS using Splunk. OR&lt;BR /&gt;
How should I monitor rpm -qa in Splunk. &lt;/P&gt;</description>
      <pubDate>Fri, 08 Mar 2013 09:57:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/RPM-detection/m-p/55766#M13611</guid>
      <dc:creator>catch_mili</dc:creator>
      <dc:date>2013-03-08T09:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: RPM detection</title>
      <link>https://community.splunk.com/t5/Splunk-Search/RPM-detection/m-p/55767#M13612</link>
      <description>&lt;P&gt;Hi catch_mili&lt;/P&gt;

&lt;P&gt;like in your Solaris question ... it's the same here: how would you detect a newly installed RPM in CentOS and then provide it into splunk.&lt;/P&gt;

&lt;P&gt;for example: &lt;/P&gt;

&lt;P&gt;you can get with &lt;CODE&gt;rpm -qa&lt;/CODE&gt; a full list of installed RPM and with &lt;CODE&gt;rpm -qi &amp;lt;RPM Name&amp;gt;&lt;/CODE&gt; you can get the install date. With this you can build a scripted input.&lt;/P&gt;

&lt;P&gt;cheers,&lt;BR /&gt;
MuS&lt;/P&gt;</description>
      <pubDate>Fri, 08 Mar 2013 10:38:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/RPM-detection/m-p/55767#M13612</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2013-03-08T10:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: RPM detection</title>
      <link>https://community.splunk.com/t5/Splunk-Search/RPM-detection/m-p/55768#M13613</link>
      <description>&lt;P&gt;Hi MuS, Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2013 08:51:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/RPM-detection/m-p/55768#M13613</guid>
      <dc:creator>catch_mili</dc:creator>
      <dc:date>2013-03-12T08:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: RPM detection</title>
      <link>https://community.splunk.com/t5/Splunk-Search/RPM-detection/m-p/55769#M13614</link>
      <description>&lt;P&gt;RPM gives you one additional option too, the &lt;CODE&gt;--queryformat&lt;/CODE&gt; option, which can give you additional data, like the install time.  An example is as such:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;rpm --queryformat "%{NAME} %{VERSION} %{INSTALLTIME}\n" -qa
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 May 2013 13:30:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/RPM-detection/m-p/55769#M13614</guid>
      <dc:creator>dwaddle</dc:creator>
      <dc:date>2013-05-29T13:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: RPM detection</title>
      <link>https://community.splunk.com/t5/Splunk-Search/RPM-detection/m-p/55770#M13615</link>
      <description>&lt;P&gt;hi MuS,&lt;BR /&gt;
can you tell how this script would be please?&lt;BR /&gt;
Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jan 2015 10:51:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/RPM-detection/m-p/55770#M13615</guid>
      <dc:creator>blebit</dc:creator>
      <dc:date>2015-01-16T10:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: RPM detection</title>
      <link>https://community.splunk.com/t5/Splunk-Search/RPM-detection/m-p/55771#M13616</link>
      <description>&lt;P&gt;hi dwaddle,&lt;BR /&gt;
how to convert install time into readable format ?&lt;BR /&gt;
thanks&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jan 2015 10:56:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/RPM-detection/m-p/55771#M13616</guid>
      <dc:creator>blebit</dc:creator>
      <dc:date>2015-01-16T10:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: RPM detection</title>
      <link>https://community.splunk.com/t5/Splunk-Search/RPM-detection/m-p/55772#M13617</link>
      <description>&lt;P&gt;although this is completely un-related to Splunk I provide an answer here &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;rpm --queryformat "%{NAME} %{VERSION} %{INSTALLTIME:date}\n" -qa
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;found here &lt;A href="http://www.nbtnet.newboundary.com/support/docs/ppm/ppm/ppm_6_3/general_unix/ppm0362.htm"&gt;http://www.nbtnet.newboundary.com/support/docs/ppm/ppm/ppm_6_3/general_unix/ppm0362.htm&lt;/A&gt; after one single google search &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;/P&gt;</description>
      <pubDate>Fri, 16 Jan 2015 11:32:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/RPM-detection/m-p/55772#M13617</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2015-01-16T11:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: RPM detection</title>
      <link>https://community.splunk.com/t5/Splunk-Search/RPM-detection/m-p/55773#M13618</link>
      <description>&lt;P&gt;This is not possible, since i don't know your environment nor your requirement. &lt;/P&gt;</description>
      <pubDate>Fri, 16 Jan 2015 11:33:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/RPM-detection/m-p/55773#M13618</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2015-01-16T11:33:17Z</dc:date>
    </item>
  </channel>
</rss>

