Activity Feed
- Got Karma for XML Parsing using SPath. 06-05-2020 12:48 AM
- Posted Re: Splunk App for Windows Infrastructure: Why is there no data under Group Policy (GPO) Changes? on All Apps and Add-ons. 01-04-2017 01:54 AM
- Posted Re: How to fix error "Forwarding to indexer group default-autolb-group blocked for 100 seconds"? on Getting Data In. 12-22-2016 02:39 AM
- Posted Re: Route data to separate index based on CIDR on Getting Data In. 12-13-2016 02:00 AM
- Posted Re: Can I configure transforms.conf to route data to different sourcetypes and indexes based on host? on Getting Data In. 12-12-2016 10:27 PM
- Posted Re: How can I override an index name based on sourcetype? on Getting Data In. 12-07-2016 04:26 AM
- Posted Re: How to route to an Index based on SourceType AND Host combination in inputs.conf? on Getting Data In. 12-05-2016 11:00 AM
- Posted How to route to an Index based on SourceType AND Host combination in inputs.conf? on Getting Data In. 12-05-2016 02:52 AM
- Tagged How to route to an Index based on SourceType AND Host combination in inputs.conf? on Getting Data In. 12-05-2016 02:52 AM
- Tagged How to route to an Index based on SourceType AND Host combination in inputs.conf? on Getting Data In. 12-05-2016 02:52 AM
- Tagged How to route to an Index based on SourceType AND Host combination in inputs.conf? on Getting Data In. 12-05-2016 02:52 AM
- Tagged How to route to an Index based on SourceType AND Host combination in inputs.conf? on Getting Data In. 12-05-2016 02:52 AM
- Tagged How to route to an Index based on SourceType AND Host combination in inputs.conf? on Getting Data In. 12-05-2016 02:52 AM
- Posted How to filter out the first 2 lines of an event? on Getting Data In. 08-30-2016 08:13 AM
- Tagged How to filter out the first 2 lines of an event? on Getting Data In. 08-30-2016 08:13 AM
- Tagged How to filter out the first 2 lines of an event? on Getting Data In. 08-30-2016 08:13 AM
- Tagged How to filter out the first 2 lines of an event? on Getting Data In. 08-30-2016 08:13 AM
- Posted Re: XML Parsing using SPath on Dashboards & Visualizations. 08-25-2016 11:02 PM
- Posted Re: XML Parsing using SPath on Dashboards & Visualizations. 08-25-2016 12:00 AM
- Posted Re: XML Parsing using SPath on Dashboards & Visualizations. 08-24-2016 05:33 AM
Topics I've Started
Subject | Karma | Author | Latest Post |
---|---|---|---|
0 | |||
0 | |||
1 | |||
0 | |||
0 | |||
0 |
04-26-2022
05:36 AM
This is old article, but I still add one comment how I'm doing it if possible (little bit modified version from @gjanders ' own method). I have plain app from splunkbase without any inputs. Then separate apps like 0xy_<splunkbase_app> for all needed separate configurations and join these into serverclasses. r. Ismo
... View more
08-30-2016
10:03 AM
If you own the script, update the same to remove these unwanted lines from the output.
If that's not possible, you can use event filtering method to drop those lines from indexing
http://docs.splunk.com/Documentation/Splunk/6.4.3/Forwarding/Routeandfilterdatad#Filter_and_route_event_data_to_target_groups
https://answers.splunk.com/answers/37423/how-to-configure-a-forwarder-to-filter-and-send-the-specific-events-i-want.html
... View more
08-28-2016
11:25 AM
Does it have to be spath? If you're open to using xpath instead you could do something like this:
| xpath outfield=MemberSid "//*[local-name()='Data' and namespace-uri()='http://schemas.microsoft.com/win/2004/08/events/event' and @Name='MemberSid']"
It is indeed a bit more complex of a query, thanks to unprefixed XML namespaces, and the corresponding xpath behaviour as pointed out in this stack overflow answer, but you can get the value of any data element with a specific Name attribute this way.
Dummy Test:
| makeresults | eval _raw="<Event xmlns=\"http://schemas.microsoft.com/win/2004/08/events/event\">
<EventData>
<Data Name=\"MemberName\">member</Data>
<Data Name=\"MemberSid\">ABC</Data>
<Data Name=\"TargetDomainName\">domain</Data>
<Data Name=\"MemberName2\">member</Data>
</EventData>
</Event>" | xpath outfield=MemberSid "//*[local-name()='Data' and namespace-uri()='http://schemas.microsoft.com/win/2004/08/events/event' and @Name='MemberSid']"
... View more
05-31-2016
04:49 AM
This is not possible but it is very easy to do a scripted input (or scripted lookup ) and call them from there completely bypassing DB Connect entirely.
... View more
12-26-2016
09:53 PM
Hi!
We have written the procedure on oracle db named TEST1 its working fine while we run in on Oracle SQL developer.
But when trying to run it on Splunk DB connect as EXEC TEST1; or EXEC TEST1 it gives below error.
Invalid Query
External search command 'dbxquery' returned error code 1. Script output = "RuntimeError: Failed to run query: "EXEC TEST1;", params: "None", caused by: Exception(' java.sql.SQLSyntaxErrorException: ORA-00900: invalid SQL statement\n.',). "
Could you please help.
... View more
02-26-2018
11:05 PM
1 Karma
Hi i am facing the same issue .
When i do telnet its showng the connection but not forwarding the data.
Below is my error
The TCP output processor has paused the data flow. Forwarding to output group default-autolb-group has been blocked for 6200 seconds. This will probably stall the data flow towards indexing and other network outputs. Review the receiving system's health in the Splunk Monitoring Console. It is probably not accepting data.
... View more
04-17-2016
11:18 PM
This worked for me. Thanks for your help.
... View more
03-17-2019
01:53 PM
Greetings from the future ...
Yes, you can specify a host name to be used in props.conf see the docs for more details https://docs.splunk.com/Documentation/Splunk/latest/Admin/Propsconf#GLOBAL_SETTINGS
cheers, MuS
... View more