Activity Feed
- Got Karma for How to estimate the splunk storage size. 06-05-2020 12:46 AM
- Posted filter windows application event by Source on Splunk Search. 05-29-2014 07:50 AM
- Tagged filter windows application event by Source on Splunk Search. 05-29-2014 07:50 AM
- Posted Re: bootstrapping process for splunk cluster on aws on All Apps and Add-ons. 05-19-2014 02:35 PM
- Posted bootstrapping process for splunk cluster on aws on All Apps and Add-ons. 05-16-2014 12:52 PM
- Tagged bootstrapping process for splunk cluster on aws on All Apps and Add-ons. 05-16-2014 12:52 PM
- Tagged bootstrapping process for splunk cluster on aws on All Apps and Add-ons. 05-16-2014 12:52 PM
- Posted How to estimate the splunk storage size on Deployment Architecture. 05-12-2014 11:31 AM
- Tagged How to estimate the splunk storage size on Deployment Architecture. 05-12-2014 11:31 AM
- Tagged How to estimate the splunk storage size on Deployment Architecture. 05-12-2014 11:31 AM
- Posted sizing of master node in cluster? is it same as peer nodes on Deployment Architecture. 05-09-2014 07:23 PM
- Tagged sizing of master node in cluster? is it same as peer nodes on Deployment Architecture. 05-09-2014 07:23 PM
- Posted How do I get an alert if my forwarder is not responding? - Monitoring Splunk Forwarder on Getting Data In. 04-07-2014 12:38 PM
- Tagged How do I get an alert if my forwarder is not responding? - Monitoring Splunk Forwarder on Getting Data In. 04-07-2014 12:38 PM
- Posted Pre-index filtering - filter non-xml lines from xml data on Getting Data In. 03-23-2014 03:41 PM
- Tagged Pre-index filtering - filter non-xml lines from xml data on Getting Data In. 03-23-2014 03:41 PM
- Tagged Pre-index filtering - filter non-xml lines from xml data on Getting Data In. 03-23-2014 03:41 PM
- Tagged Pre-index filtering - filter non-xml lines from xml data on Getting Data In. 03-23-2014 03:41 PM
- Posted Re: rex expression on Splunk Search. 01-16-2014 07:17 AM
- Posted rex expression on Splunk Search. 01-15-2014 01:43 PM
Topics I've Started
Subject | Karma | Author | Latest Post |
---|---|---|---|
0 | |||
0 | |||
1 | |||
0 | |||
0 | |||
0 | |||
0 | |||
0 | |||
0 | |||
0 |
05-29-2014
08:57 AM
See the link below with similar requirement (except that this post is filtering based on EventCode)
http://answers.splunk.com/answers/47168/windows-event-log-filter-attempt-failing
Also, note the fact that this changes have to be done on Indexer as you're using Universal Forwarder.
... View more
05-21-2014
11:37 AM
Take a look at the recipe and server.conf template:
https://github.com/rarsan/splunk_cookbook/blob/master/recipes/server.rb#L117
https://github.com/rarsan/splunk_cookbook/blob/master/templates/default/server/server.conf.erb#L12
... View more
05-12-2014
02:18 PM
1 Karma
GOOD POINT! Each indexer should be getting 5GB/day which is then duplicated 2x to 10GB/day. DERP. I fixed the math. Thanks @martin_mueller!
... View more
05-09-2014
10:14 PM
The master node stores no data and just acts as a "traffic cop" for the cluster peers, and does not need to be anything special machine-wise. I run 7 indexers at 500gb/day with a master node that is a Virtual Machine with 4 CPUs and 4gb of memory. The master node never has any load.
... View more
04-07-2014
12:56 PM
1 Karma
Easiest way,
Use Deployment monitor app. Set missing forwarder alerts to your mail box.
Download from here:
Deployment Monitor
Thanks
... View more
03-24-2014
02:27 AM
Hi ajaysamantbms,
the problem with this kind of question is always the same:
if this will work in your setup with your data must be tested by yourself and therefore only you will be able to answer if this will work for you or not.
the conf files look ok and the regex matches your XML data. So go ahead and test it 😉
cheers, MuS
... View more
12-29-2013
02:01 PM
Er, well, no. Your events will be broken where you've indicated, i.e. like this;
Event 1:
<transaction>ffffff</transaction>
ABCD EFG
Event 2:
<access></access>
WERT SDF
Thus you should consider whether these are the types of event that you want. Btw, do they even contain timestamps?
As for the second part of your setup, the nullQueueing will work, but maybe not as you've expected. The ordering of the transforms is correct - all events (the regex dot) get queue=nullQueue in the first transform, but since all events (at least according to your sample events) will also match on the second transform, they get the queue set back to indexQueue . In short, the order of the transforms matters since each event for your sourcetype will pass through all transforms - in order - before being processed further.
If you want to filter out parts of an event, you should probably look at some other options, like SEDCMD. Perhaps this can be of use;
http://docs.splunk.com/Documentation/Splunk/6.0.1/Data/Anonymizedatausingconfigurationfiles
Hope this helps,
K
... View more
12-19-2013
02:09 PM
4 Karma
It works the other ways, it's a pull from the deployment-client to the deployment-server.
so make sure that the forwarders can access the deployment server on management port (default is 8089 tcp).
... View more
12-16-2013
04:32 AM
1 Karma
Index names should not begin with "_".
... View more
12-16-2013
03:14 PM
Well, your search isn't filtering out anything, so it will certainly have all the events from gatewaylogs1. I have updated the search. But not sure yet if it will work.
... View more
12-12-2013
12:29 PM
well, if you only have two servers, it does not really matter which way you slice it. Either you have 2 apps;
app1: c:\test1\ + perfmon
app2: c:\test2\ + perfmon + registry
or you have 3 apps;
app1: perfmon
app2: c:\test1\
app3: c:\test2\ + registry
deploy them accordingly with serverclasses.
... View more
12-12-2013
11:58 AM
1 Karma
You are correct, it will replace the entire file. For that matter it will in fact replace the entire app. If you have appA on your deployserver, and it only contains inputs.conf, and your forwarder has appA that contains inputs.conf and outputs.conf. Once your deployserver sends the update, your appA will not have the outputs.conf.
What you should do is make a copy of the app onto your deployserver, make the necessary changes on your deployserver, and from now on only ever make changes on the deploysever.
Hope this helps.
... View more