|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.util.AbstractMap<K,V> java.util.HashMap<K,V> java.util.LinkedHashMap<java.lang.String,java.lang.Object> com.splunk.Args com.splunk.JobArgs
public class JobArgs
The JobArgs
class contains arguments for creating a Job
.
Nested Class Summary | |
---|---|
static class |
JobArgs.ExecutionMode
Specifies how to create a job using the JobCollection.create(java.lang.String)
method. |
static class |
JobArgs.SearchMode
Specifies how to create a job using the JobCollection.create(java.lang.String)
method. |
Nested classes/interfaces inherited from class java.util.AbstractMap |
---|
java.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V> |
Constructor Summary | |
---|---|
JobArgs()
Class constructor. |
Method Summary | |
---|---|
void |
setAutoCancel(int autoCancel)
Sets the number of seconds of inactivity after which to automatically cancel a job. |
void |
setAutoFinalizeEventCount(int autoFinalizeEventCount)
Sets the number of events to process after which to auto-finalize the search. |
void |
setAutoPause(int autoPause)
Sets the number of seconds of inactivity after which to automatically pause a job. |
void |
setEarliestTime(java.lang.String earliestTime)
Specifies the earliest time in the time range to search. |
void |
setEnableLookups(boolean enableLookups)
Indicates whether to enable lookups for this search. |
void |
setExecutionMode(JobArgs.ExecutionMode executionMode)
Sets the type of search to run ("blocking", "oneshot", or "normal"). |
void |
setForceBundleReplication(boolean forceBundleReplication)
Specifies whether this search should cause (and wait depending on the value of setSynchronizeBundleReplication ) bundle synchronization with all search peers. |
void |
setId(java.lang.String id)
Sets a search ID (SID). |
void |
setLatestTime(java.lang.String latestTime)
Specifies the latest time in the time range to search. |
void |
setMaximumCount(int maximumCount)
Sets the number of events that can be accessible in any given status bucket. |
void |
setMaximumTime(int maximumTime)
Sets the maximum number of seconds to run this search before finalizing. |
void |
setNamespace(java.lang.String namespace)
Specifies the application namespace to which to restrict searches. |
void |
setNow(java.lang.String now)
Specifies a time string that sets the absolute time used for any relative time specifier in the search. |
void |
setRealtimeBlocking(boolean realtimeBlocking)
Indicates whether the indexer blocks if the queue for this search is full. |
void |
setRealtimeIndexFilter(boolean realtimeIndexFilter)
Indicates whether the indexer pre-filters events. |
void |
setRealtimeMaximumBlockSeconds(int realtimeMaximumBlockSeconds)
Sets the number of seconds indicating the maximum time to block. |
void |
setRealtimeQueueSize(int realtimeQueueSize)
Sets the number indicating the queue size (in events) that the indexer should use for this search. |
void |
setReduceFrequency(int reduceFrequency)
Sets the time to wait between running the MapReduce phase on accumulated map values. |
void |
setReloadMacros(boolean reloadMacros)
Indicates whether to reload macro definitions from the macros.conf configuration file. |
void |
setRemoteServerList(java.lang.String[] remoteServerList)
Sets a list of (possibly wildcarded) servers from which to pull raw events. |
void |
setRequiredFieldList(java.lang.String[] requiredFieldList)
Sets one or more required fields to the search. |
void |
setSearchListener(java.lang.String searchListener)
Sets a string that registers a search state listener with the search. |
void |
setSearchMode(JobArgs.SearchMode searchMode)
Sets the search mode ("normal" or "realtime"). |
void |
setSpawnProcess(boolean spawnProcess)
Indicates whether the search should run in a separate spawned process. |
void |
setStatusBuckets(int statusBuckets)
Sets the maximum number of status buckets to generate. |
void |
setSynchronizeBundleReplication(boolean synchronizeBundleReplication)
Indicates whether this search should wait for bundle replication to complete. |
void |
setTimeFormat(java.lang.String timeFormat)
Sets the format for converting a formatted time string from {start,end}_time into UTC seconds. |
void |
setTimeout(int timeout)
Sets the number of seconds to keep this search after processing has stopped. |
Methods inherited from class com.splunk.Args |
---|
add, create, create, create, encode, encode, encode, get |
Methods inherited from class java.util.LinkedHashMap |
---|
clear, containsValue, get, removeEldestEntry |
Methods inherited from class java.util.HashMap |
---|
clone, containsKey, entrySet, isEmpty, keySet, put, putAll, remove, size, values |
Methods inherited from class java.util.AbstractMap |
---|
equals, hashCode, toString |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.Map |
---|
containsKey, entrySet, equals, hashCode, isEmpty, keySet, put, putAll, remove, size, values |
Constructor Detail |
---|
public JobArgs()
Method Detail |
---|
public void setAutoCancel(int autoCancel)
autoCancel
- The number of seconds after which to cancel a job.public void setAutoFinalizeEventCount(int autoFinalizeEventCount)
autoFinalizeEventCount
- The number of events.public void setAutoPause(int autoPause)
autoPause
- The number of seconds after which to pause.public void setEarliestTime(java.lang.String earliestTime)
earliestTime
- The earliest time.public void setEnableLookups(boolean enableLookups)
enableLookups
- true
to enable lookups, false
if not.public void setExecutionMode(JobArgs.ExecutionMode executionMode)
executionMode
- The search type.public void setForceBundleReplication(boolean forceBundleReplication)
setSynchronizeBundleReplication
) bundle synchronization with all search peers.
forceBundleReplication
- true
if this search should cause bundle synchronization,
false
if not.public void setId(java.lang.String id)
id
- The search ID.public void setLatestTime(java.lang.String latestTime)
latestTime
- The latest time.public void setMaximumCount(int maximumCount)
codeoffset + count <= max_count
.
maximumCount
- The maximum count of events.public void setMaximumTime(int maximumTime)
maximumTime
- The maximum time, in seconds.public void setNamespace(java.lang.String namespace)
namespace
- The namespace.public void setNow(java.lang.String now)
You can specify a relative time modifier for this parameter. For example, specify +2d to specify the current time plus two days. If you specify a relative time modifier both in this parameter and in the search string, the search string modifier takes precedence.
For information about relative time modifiers, see Time modifiers for search in the Search Reference.
now
- The time string.public void setReduceFrequency(int reduceFrequency)
reduceFrequency
- The time to wait, in seconds.public void setReloadMacros(boolean reloadMacros)
reloadMacros
- true
to reload macro definitions, false
if not.public void setRemoteServerList(java.lang.String[] remoteServerList)
remoteServerList
- The list of servers.public void setRequiredFieldList(java.lang.String[] requiredFieldList)
requiredFieldList
- The list of fields.public void setRealtimeBlocking(boolean realtimeBlocking)
realtimeBlocking
- true
to block the indexer for a full queue, false
if not.public void setRealtimeIndexFilter(boolean realtimeIndexFilter)
realtimeIndexFilter
- true
to pre-filter events, false
if not.public void setRealtimeMaximumBlockSeconds(int realtimeMaximumBlockSeconds)
true
.
realtimeMaximumBlockSeconds
- The maximum time to block, in seconds.public void setRealtimeQueueSize(int realtimeQueueSize)
realtimeQueueSize
- The queue size, in events.public void setSearchListener(java.lang.String searchListener)
search_state;results_condition;http_method;uri;
For example:
search_listener=onResults;true;POST;/servicesNS/admin/search/saved/search/foobar/notify;
searchListener
- The search listener string.public void setSearchMode(JobArgs.SearchMode searchMode)
searchMode
- The search mode.public void setSpawnProcess(boolean spawnProcess)
spawnProcess
- true
to run the search in a separate process, false
if not.public void setStatusBuckets(int statusBuckets)
statusBuckets
- The maximum number of buckets.public void setSynchronizeBundleReplication(boolean synchronizeBundleReplication)
synchronizeBundleReplication
- true
to wait for bundle replication, false
if not.public void setTimeFormat(java.lang.String timeFormat)
timeFormat
- The time format string.public void setTimeout(int timeout)
timeout
- The timeout, in seconds.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |