<?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: performance considerations for eventtypes? in Monitoring Splunk</title>
    <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16546#M141</link>
    <description>&lt;P&gt;My understanding is:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;the cost of eventtypes is not linear, but something more like
logarithmic, because we use techniques to fold together the work
for the possible eventtypes&lt;/LI&gt;
&lt;LI&gt;The fields you base your eventtypes on are only important inasmuch
as they affect whether splunk has to determine those fields at all.
Thus having zero eventtypes matching against extracted fields might
save you from having to ever extract, but if a single eventtype
needs each extracted field, there is no additional cost of more
eventtypes on extracted fields.&lt;/LI&gt;
&lt;LI&gt;index should work in an eventtype.  Index used to be handled in a
very special way and the results of a given combination were hard
to predict.  index is now handled much more like other terms in a
search expression&lt;/LI&gt;
&lt;LI&gt;"field=value" vs field=value is general to all searches, including
eventtypes.  "field=value" could be a win if the "field" string is
rare in your events.  It could also be a win if somehow this allows
AutoKV to not need to run, but that's very hard to arrange
for/predict.&lt;/LI&gt;
&lt;LI&gt;Using lookup fields may force the lookup to be loaded.  &lt;/LI&gt;
&lt;LI&gt;tags are not intrinsically expensive at all, they're just mapped
(once per search) to a list of OR expressions.  If the OR list is
very very large, there is some cost.&lt;/LI&gt;
&lt;LI&gt;The raw bucket data is not available to the event typer, thus
indexed vs nonindexed fields are almost entirely out of scope.&lt;/LI&gt;
&lt;LI&gt;I didn't even know we supported nested eventtypes.  The
implementation author probably could say more.&lt;/LI&gt;
&lt;/UL&gt;</description>
    <pubDate>Fri, 02 Jul 2010 23:58:16 GMT</pubDate>
    <dc:creator>jrodman</dc:creator>
    <dc:date>2010-07-02T23:58:16Z</dc:date>
    <item>
      <title>performance considerations for eventtypes?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16541#M136</link>
      <description>&lt;P&gt;I've been looking at the "Search Job Inspector" recently and noticing that &lt;CODE&gt;command.search.typer&lt;/CODE&gt; is often showing up at the top of the list.  It's not uncommon for it to be using nearly 50% (sometimes more) of the total &lt;CODE&gt;command.search&lt;/CODE&gt; time.  My searches are not performing unacceptably yet, but I and anticipate the number of eventtypes growing as we add more and more sources (as will the search load) so I can't imaging this will magically improve; so I would like to look at this now, before it become a bigger problem.&lt;/P&gt;

&lt;P&gt;Based on general optimization principles, I'm starting with the following assumptions:&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;The more eventtypes defined the more effort required to match events with eventtypes and therefore a longer execution of &lt;CODE&gt;typer&lt;/CODE&gt; is to be expected.  So reducing the total number of eventypes should improve performance.&lt;/LI&gt;
&lt;LI&gt;Poorly defined eventtypes will be more expensive than a well-defined eventtype.  (For example, I'm assuming that an eventtype defined by the search &lt;CODE&gt;"user!=joe bytes&amp;gt;=1000"&lt;/CODE&gt; would be less efficient than an eventtype defined as &lt;CODE&gt;"sourcetype=ftp UPLOAD OK"&lt;/CODE&gt;)&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;&lt;EM&gt;If I'm missing something or have any of this wrong so far, please say so.&lt;/EM&gt;&lt;/P&gt;

&lt;H2&gt;#1:  Reduce number of eventtypes:&lt;/H2&gt;

&lt;P&gt;Based on the &lt;A href="http://answers.splunk.com/questions/1462/eventtypes-numbers-limits" rel="nofollow"&gt;Eventtypes' numbers limits&lt;/A&gt; question, the answer  suggested that the total number of eventypes should ideally be limited to a few hundred.  However, I'm not sure that very realistic.  (The answer wasn't clear, but I'm thinking that a "few hundred" means somewhere between 200-400?)&lt;/P&gt;

&lt;P&gt;I looked at my system and I currently have over 340 eventtypes defined that are shared across all apps.  Of those, 111 of the come from the &lt;CODE&gt;windows&lt;/CODE&gt; app.  I have the eventtypes in the "unix" app set to application-only sharing, or that would add another 133 eventtypes globally (I did this  because the "unix" eventtypes generally seem to be too-loosely defined and rather unhelpful.  To be honest, the quality seems pretty poor.  For example, as of Splunk 4.1.3, the Unix app contains 17 eventtypes (e.g. "df", "cpu", ...) that don't even have a "search" defined in the config file. They show up as "None" in the UI.  Also the eventtype tags are pretty inconsistent.  So I chose to ignore them rather than try to deal with them.)&lt;/P&gt;

&lt;P&gt;I have an app with nearly 100 app-level eventtypes.  It's fairly self contained, and it would be nice to "block" out the eventypes of the other apps to improve performance within that app, but that's not possible as far as I know.&lt;/P&gt;

&lt;P&gt;Again, it seems inevitable that the number of eventtypes will only grow as splunk usage increases.  So other than doing some cleanup, it doesn't seem possible to reduce this dramatically.&lt;/P&gt;

&lt;H2&gt;#2 Optimize eventtype definitions:&lt;/H2&gt;

&lt;P&gt;This is where I would really like to focus my efforts.  The problem is, I haven't come across any recommendations/suggestions/guidelines as to how to write more-efficient eventtypes, and I would really appreciate some input from the people who know this stuff.&lt;/P&gt;

&lt;P&gt;Without a good place to start, I've done what I always do: Ask lots of questions!&lt;/P&gt;

&lt;P&gt;If these can be answered directly, that would be great, but even starting with some general principles would be a great help.  Even a never-do-this list would be helpful.&lt;/P&gt;

&lt;P&gt;Here are some specific eventtype performance questions:&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;What's the impact of...&lt;/STRONG&gt;&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;Using the core indexed fields (source/sourcetype/host)?  It seems eventtypes based on sourcetype can be included/excluded faster than eventtypes based on simple search terms, is that true?&lt;/LI&gt;
&lt;LI&gt;Using &lt;CODE&gt;index=&lt;/CODE&gt;?  (Old docs said you shouldn't do this, but newer docs say any search expression is fine.  If I have a bunch of firewall events that only occur in &lt;CODE&gt;index=firewall&lt;/CODE&gt; will they be faster if I add that to the eventtype definition?)&lt;/LI&gt;
&lt;LI&gt;Using &lt;CODE&gt;splunk_server=&lt;/CODE&gt;?&lt;/LI&gt;
&lt;LI&gt;Using &lt;CODE&gt;field=value&lt;/CODE&gt; in an eventtype?  Or is it better to use a literal string (like &lt;CODE&gt;"EventCode=538"&lt;/CODE&gt;) than using the field lookup (&lt;CODE&gt;EventCode=538&lt;/CODE&gt;)?  (Does using an eventtype with fields prevent field extraction engine from automatically disabling extractors when splunk detects that the fields being outputted are not needed by the search.  I know some non-interactive searches try to do disable extractors for efficiency when possible, can eventtype get in the way of this?)&lt;/LI&gt;
&lt;LI&gt;Using lookup fields?  (Example:  where an automatic extraction is based on a sourcetype, and that sourcetype is included in the eventtype definition)&lt;/LI&gt;
&lt;LI&gt;Using a source/host/sourcetype tags as part of an eventtype criteria.&lt;/LI&gt;
&lt;LI&gt;Using indexed fields vs extracted fields?  (indexed fields like "punct")&lt;/LI&gt;
&lt;LI&gt;Using quoted strings.  (Can indexed terms alone be matched faster than a quoted expression?  Is there any concept of segmentation here, or does &lt;CODE&gt;typer&lt;/CODE&gt; re-evaluate the raw events anyways?)&lt;/LI&gt;
&lt;LI&gt;Using wildcards (e.g. &lt;CODE&gt;term*&lt;/CODE&gt;)&lt;/LI&gt;
&lt;LI&gt;Nested eventtypes.  Say you have an "base" eventtype that is used in the definition of several other eventtype (essentially creating a simple way to extend the "base" eventtype to cover a more specific scenario).  So if the base eventtype doesn't match, can &lt;CODE&gt;typer&lt;/CODE&gt; more quickly eliminate the derived eventypes too?  Or does it cause more work?  Or is it more like a macro-expansion thing where the eventtype get's unrolled before it's evaluated so it doesn't make much difference in performance in any case?&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;I'm guessing there are lots of corner cases here.  An eventtype definition can go across tons of layers which is what makes them so powerful, and I'm sure that also mean they can be quite expensive at times too.  So any hints would be appreciated, and some kind of "profiler tool" would be amazing (I'll even consider naming my first born after you.)&lt;/P&gt;

&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2010 06:56:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16541#M136</guid>
      <dc:creator>Lowell</dc:creator>
      <dc:date>2010-06-30T06:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: performance considerations for eventtypes?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16542#M137</link>
      <description>&lt;P&gt;dude, you are amazing. thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2010 07:51:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16542#M137</guid>
      <dc:creator>piebob</dc:creator>
      <dc:date>2010-06-30T07:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: performance considerations for eventtypes?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16543#M138</link>
      <description>&lt;P&gt;Thanks.  But I'm not sure if that means that you liked the question, or if you can help get me some answers.  &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2010 21:07:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16543#M138</guid>
      <dc:creator>Lowell</dc:creator>
      <dc:date>2010-06-30T21:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: performance considerations for eventtypes?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16544#M139</link>
      <description>&lt;P&gt;i liked the question a lot, and i've poked some people to see if they can help. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jul 2010 00:08:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16544#M139</guid>
      <dc:creator>piebob</dc:creator>
      <dc:date>2010-07-02T00:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: performance considerations for eventtypes?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16545#M140</link>
      <description>&lt;P&gt;There are very few suggestions about general eventtype optimization:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;use app scoping to limit the number of eventtypes a search has to consider &lt;/LI&gt;
&lt;LI&gt;eventtypes using just terms/phrases/wildcarded terms are sometimes computationally cheaper than eventtypes with fields in them&lt;/LI&gt;
&lt;LI&gt;since eventtyping is done at search time, all fields (indexed, search time, looked up) are treated the same &lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;There are two modes in which the splunk UI executes searches:&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;&lt;P&gt;exploratory mode - searches in the flashtimeline view are ran this way&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;in this mode all fields, including eventtype, are required. This enables the 
 users to view the field picker and field summary etc .. &lt;/LI&gt;
&lt;/UL&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;optimized mode - searches in the Advanced Charting view are ran this way (the scheduler runs searches in this mode too)&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;in this mode we analyze the search to determine the set of required fields and in most cases the eventtype field is not required, (unless of course the search is using the eventtype )  - thus no eventtyping is done&lt;/LI&gt;
&lt;/UL&gt;&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;There is one neat trick to avoid the eventtyping even when running searches from the flashtimeline view: simply add "| fields - eventtype" to your search, for example:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;"search * | fields - eventtype | stats count"  - no eventtyping even in exploratory mode
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Note, that the number of eventtypes a search has to consider will not linearly correlate with the performance of eventtyping - the reason for this is that many eventtypes will share terms, phrases or field comparisons which we evaluate only once.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jul 2010 00:47:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16545#M140</guid>
      <dc:creator>Ledion_Bitincka</dc:creator>
      <dc:date>2010-07-02T00:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: performance considerations for eventtypes?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16546#M141</link>
      <description>&lt;P&gt;My understanding is:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;the cost of eventtypes is not linear, but something more like
logarithmic, because we use techniques to fold together the work
for the possible eventtypes&lt;/LI&gt;
&lt;LI&gt;The fields you base your eventtypes on are only important inasmuch
as they affect whether splunk has to determine those fields at all.
Thus having zero eventtypes matching against extracted fields might
save you from having to ever extract, but if a single eventtype
needs each extracted field, there is no additional cost of more
eventtypes on extracted fields.&lt;/LI&gt;
&lt;LI&gt;index should work in an eventtype.  Index used to be handled in a
very special way and the results of a given combination were hard
to predict.  index is now handled much more like other terms in a
search expression&lt;/LI&gt;
&lt;LI&gt;"field=value" vs field=value is general to all searches, including
eventtypes.  "field=value" could be a win if the "field" string is
rare in your events.  It could also be a win if somehow this allows
AutoKV to not need to run, but that's very hard to arrange
for/predict.&lt;/LI&gt;
&lt;LI&gt;Using lookup fields may force the lookup to be loaded.  &lt;/LI&gt;
&lt;LI&gt;tags are not intrinsically expensive at all, they're just mapped
(once per search) to a list of OR expressions.  If the OR list is
very very large, there is some cost.&lt;/LI&gt;
&lt;LI&gt;The raw bucket data is not available to the event typer, thus
indexed vs nonindexed fields are almost entirely out of scope.&lt;/LI&gt;
&lt;LI&gt;I didn't even know we supported nested eventtypes.  The
implementation author probably could say more.&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Fri, 02 Jul 2010 23:58:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16546#M141</guid>
      <dc:creator>jrodman</dc:creator>
      <dc:date>2010-07-02T23:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: performance considerations for eventtypes?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16547#M142</link>
      <description>&lt;P&gt;Thank you.  Another very helpful answer!   Help me out point #2, am I understanding this correctly:  If a given field is used in the definition of one eventtype, then there is no (or very minimal) additional cost incurred by using that same field in additional eventtypes.  Is that right?&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jul 2010 04:35:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16547#M142</guid>
      <dc:creator>Lowell</dc:creator>
      <dc:date>2010-07-03T04:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: performance considerations for eventtypes?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16548#M143</link>
      <description>&lt;P&gt;So if that's true, then what if that same named field is extracted by different extractions?  It's not uncommon for two different sourcetypes to extract the same named field, but using different regexes.  I'm guessing splunk must maintain some sort of fieldname to extractor mapping (which, of course the "$1::$2" extractions must really add some complexity)&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jul 2010 04:37:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16548#M143</guid>
      <dc:creator>Lowell</dc:creator>
      <dc:date>2010-07-03T04:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: performance considerations for eventtypes?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16549#M144</link>
      <description>&lt;P&gt;Thanks for your response; it was helpful.   Can you confirm that using &lt;CODE&gt;| fields - eventtype&lt;/CODE&gt; actually does disable the typer.  I've tried this from both flashtimeline and charting and I still see &lt;CODE&gt;command.search.typer&lt;/CODE&gt; on the search job inspector with the same amount of time associated with it.   And &lt;CODE&gt;search.log&lt;/CODE&gt; still contains:  &lt;CODE&gt;INFO  SearchParser - PARSING: typer | tags&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jul 2010 05:05:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16549#M144</guid>
      <dc:creator>Lowell</dc:creator>
      <dc:date>2010-07-03T05:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: performance considerations for eventtypes?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16550#M145</link>
      <description>&lt;P&gt;re: your first comment. yes.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jul 2010 10:23:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16550#M145</guid>
      <dc:creator>jrodman</dc:creator>
      <dc:date>2010-07-04T10:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: performance considerations for eventtypes?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16551#M146</link>
      <description>&lt;P&gt;I'm not aware of the full algorithm for what extractions are run in the case that a field is requested. &lt;BR /&gt;
Generally speaking, none of this matters much unless the data quantity being processed is very large.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jul 2010 10:24:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16551#M146</guid>
      <dc:creator>jrodman</dc:creator>
      <dc:date>2010-07-04T10:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: performance considerations for eventtypes?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16552#M147</link>
      <description>&lt;P&gt;For anyone following along at home.  I can confirm that using "&lt;CODE&gt;| fields - eventtype&lt;/CODE&gt;" does stop the evaluation of eventtypes.  This didn't originally work for me because I had field extractions setup in &lt;CODE&gt;props.conf&lt;/CODE&gt; based on &lt;CODE&gt;eventtype&lt;/CODE&gt; (a feature I really loved, btw).  However that is no longer a supported configuration in 4.x (well technically it works, but you get a bunch of warning messages), and it prevented &lt;CODE&gt;typer&lt;/CODE&gt; from being disabled. Now that I've removed all my eventtype-based field extractions this trick works.  Thanks Ledion.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jan 2011 23:49:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16552#M147</guid>
      <dc:creator>Lowell</dc:creator>
      <dc:date>2011-01-21T23:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: performance considerations for eventtypes?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16553#M148</link>
      <description>&lt;P&gt;For me, i had to also exclude tags on eventtypes that come with the windows app. &lt;BR /&gt;
|fields - eventtype,tag::eventtype|&lt;/P&gt;</description>
      <pubDate>Sat, 05 Feb 2011 13:57:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16553#M148</guid>
      <dc:creator>gfriedmann</dc:creator>
      <dc:date>2011-02-05T13:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: performance considerations for eventtypes?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16554#M149</link>
      <description>&lt;P&gt;Interesting performance tip: For a reasonably optimized eventtype definition (in my test case it was just &lt;CODE&gt;sourcetype=foo&lt;/CODE&gt;), you get nearly the same performance running &lt;CODE&gt;eventtype=foo | fields - eventtype&lt;/CODE&gt; as &lt;CODE&gt;sourcetype=foo | fields - eventtype&lt;/CODE&gt;, in exploratory mode. It makes sense -- as a primary search term, the eventtype just expands like a macro; the post-processing "what eventtypes does this event match?" is the time sink.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2013 21:07:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16554#M149</guid>
      <dc:creator>Wilcooley</dc:creator>
      <dc:date>2013-02-27T21:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: performance considerations for eventtypes?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16555#M150</link>
      <description>&lt;P&gt;There are more considerations at: &lt;A href="http://wiki.splunk.com/Community:BestPracticesForCreatingEventTypes"&gt;http://wiki.splunk.com/Community:BestPracticesForCreatingEventTypes&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Aug 2013 17:18:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16555#M150</guid>
      <dc:creator>fabiocaldas</dc:creator>
      <dc:date>2013-08-11T17:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: performance considerations for eventtypes?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16556#M151</link>
      <description>&lt;P&gt;You also can take a look @ &lt;A href="http://wiki.splunk.com/Community:BestPracticesForCreatingEventTypes"&gt;http://wiki.splunk.com/Community:BestPracticesForCreatingEventTypes&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Aug 2013 17:19:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16556#M151</guid>
      <dc:creator>fabiocaldas</dc:creator>
      <dc:date>2013-08-11T17:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: performance considerations for eventtypes?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16557#M152</link>
      <description>&lt;P&gt;Also note that sometimes it's necessary to use the fields command to only include the fields you want to see, rather than trying to exclude the &lt;CODE&gt;eventtype&lt;/CODE&gt; field.  For more info see:  &lt;A href="http://answers.splunk.com/answers/95595/disabling-eventtypes-on-a-per-query-basis/96678"&gt;http://answers.splunk.com/answers/95595/disabling-eventtypes-on-a-per-query-basis/96678&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Dec 2013 15:21:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/performance-considerations-for-eventtypes/m-p/16557#M152</guid>
      <dc:creator>Lowell</dc:creator>
      <dc:date>2013-12-20T15:21:01Z</dc:date>
    </item>
  </channel>
</rss>

