Activity Feed
- Got Karma for Cached search results. 06-05-2020 12:45 AM
- Got Karma for Cached search results. 06-05-2020 12:45 AM
- Got Karma for Cached search results. 06-05-2020 12:45 AM
- Got Karma for Cached search results. 06-05-2020 12:45 AM
- Got Karma for Expanding on a search result automatically. 06-05-2020 12:45 AM
- Posted Re: Allow users to add public field extractions on Splunk Search. 07-06-2011 05:59 AM
- Posted Allow users to add public field extractions on Splunk Search. 07-05-2011 06:26 AM
- Tagged Allow users to add public field extractions on Splunk Search. 07-05-2011 06:26 AM
- Posted Sharing field extraction, saved search or dashboard between users on Security. 04-20-2011 05:42 AM
- Tagged Sharing field extraction, saved search or dashboard between users on Security. 04-20-2011 05:42 AM
- Tagged Sharing field extraction, saved search or dashboard between users on Security. 04-20-2011 05:42 AM
- Posted Expanding on a search result automatically on Splunk Search. 11-18-2010 09:22 AM
- Tagged Expanding on a search result automatically on Splunk Search. 11-18-2010 09:22 AM
- Tagged Expanding on a search result automatically on Splunk Search. 11-18-2010 09:22 AM
- Posted Form vs. View for Multiple Result Sets on Splunk Search. 10-25-2010 12:01 PM
- Tagged Form vs. View for Multiple Result Sets on Splunk Search. 10-25-2010 12:01 PM
- Tagged Form vs. View for Multiple Result Sets on Splunk Search. 10-25-2010 12:01 PM
- Posted Cached search results on Splunk Search. 10-19-2010 11:05 AM
- Tagged Cached search results on Splunk Search. 10-19-2010 11:05 AM
- Tagged Cached search results on Splunk Search. 10-19-2010 11:05 AM
Topics I've Started
Subject | Karma | Author | Latest Post |
---|---|---|---|
0 | |||
0 | |||
1 | |||
0 | |||
4 |
07-06-2011
08:40 AM
click on manager>apps>click on permissions for whatever the app is>select which roles/users have read and/or write access.
... View more
07-22-2016
03:19 PM
When I go Field Transformations to look for this it isnt there, not even under the All category.
I see. It looks like the Field Transformations settings page only supports REGEX/FORMAT-based transforms and not DELIMS/FIELDS-based ones.
Do you have REST API access to the search head? If so, you should be able to use the REST API directly to fix up the transform. For example, something like:
curl -sku admin:admin_password https://searchhead-hostport/servicesNS/original_owner/search/configs/conf-transforms/REPORT-LoadTest1/acl -d sharing=app -d perms.read=* -d owner=original_owner
... View more
11-18-2010
07:49 PM
1 Karma
I think for this you will need a subsearch. It will look something like this:
foo [ search destip=216.248.156.24 | dedup srcip | fields srcip ]
With a subsearch, splunkd will run the search within the brackets, and then the rows and fields of the subsearch get automatically turned into a boolean expression.
The end result is that splunkd will run this search:
foo ( srcip=A OR srcip=B OR srcip=C OR srcip=D OR ...... )
which I think is what you want.
... View more
10-27-2010
02:35 AM
1 Karma
1) there is significant documentation at splunk.com - eg:
http://www.splunk.com/base/Documentation/latest/Developer/FormIntro
Quite possibly you've just been looking in the wrong place?
eg: setting the property charting.data.search is a very advanced thing to do additional filtering and is not at all how you set the main search.
2) or if you'd rather tinker with living breathing examples you can pull down the UI Exampels app and learn in a more hands on fashion. It sounds like this might be the way to go for you (since you somehow went straight to the advanced charting documentation)
To do this:
go to the "Launcher" app,
within Launcher, go to "Browse more apps",
then scroll down until you get to "UI Examples for 4.1".
Install that app and once it's installed go to it and start reading through the examples. You'll find a number of examples talking about building different kinds of views in both the simplified XML (ie <form> and <dashboard> ) as well as the advanced XML (ie <view> )
... View more
10-19-2010
11:55 PM
2 Karma
Saved searches will be persisted until your quota settings rotate out the old searches based on the period settings. This is probably the most consistent way to have a search persisted and be able to load it at a future point in time. To load it in the future, you can view it through the jobs viewer in the gui or via the loadjob search command.
Note - simple dashboards that leverage scheduled saved searches will utilize the last run search. I believe the setting is called "useHistory". This may be a bit easier to use from an interface standpoint, as a user can just load that dashboard at any point in time to see the last stored result set for a given set of search results.
... View more