This repository was archived by the owner on May 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathService.php
More file actions
123 lines (114 loc) · 4.11 KB
/
Copy pathService.php
File metadata and controls
123 lines (114 loc) · 4.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?php
/**
* Copyright 2013 Splunk, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"): you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
/**
* Provides an object-oriented interface to access entities of a Splunk server.
*
* @package Splunk
*/
class Splunk_Service extends Splunk_Context
{
/**
* Constructs a new service with the specified parameters.
*
* @see Splunk_Context::__construct()
*/
public function __construct($args=array())
{
parent::__construct($args);
}
// === Endpoints ===
/**
* Gets the collection of indexes on this server.
*
* @return Splunk_Collection The collection of indexes on this server.
*/
public function getIndexes()
{
return new Splunk_Collection($this, 'data/indexes/', 'Splunk_Index');
}
/**
* Gets the collection of search jobs on this server.
*
* @return Splunk_Jobs The collection of search jobs on this server.
*/
public function getJobs()
{
return new Splunk_Jobs($this, 'search/jobs/', 'Splunk_Job');
}
/**
* Gets an interface to send events to this server.
*
* @return Splunk_Receiver An interface to send events to this server.
*/
public function getReceiver()
{
return new Splunk_Receiver($this);
}
/**
* Gets the collection of saved searches on this server.
*
* @return Splunk_Collection The collection of saved searches on this server.
*/
public function getSavedSearches()
{
return new Splunk_Collection($this, 'saved/searches/', 'Splunk_SavedSearch');
}
// === Convenience ===
/**
* Creates a new search job.
*
* @param string $search The search query for the job to perform.
* @param array $args (optional) Job-specific creation arguments,
* merged with {<br/>
* **namespace**: (optional) {Splunk_Namespace} The namespace in which
* to create the entity. Defaults to the service's
* namespace.<br/>
* }<br/>
* For details, see the
* <a href="http://docs.splunk.com/Documentation/Splunk/latest/RESTAPI/RESTsearch#search.2Fjobs">
* "POST search/jobs"</a>
* endpoint in the REST API Documentation.
* @return Splunk_Job
* @throws Splunk_IOException
*/
public function search($search, $args=array())
{
return $this->getJobs()->create($search, $args);
}
/**
* Executes the specified search query and returns results immediately.
*
* @param string $search The search query for the job to perform.
* @param array $args (optional) Job-specific creation arguments,
* merged with {<br/>
* **namespace**: (optional) {Splunk_Namespace} The namespace in which
* to create the entity. Defaults to the service's
* namespace.<br/>
* }<br/>
* For details, see the
* <a href="http://docs.splunk.com/Documentation/Splunk/latest/RESTAPI/RESTsearch#search.2Fjobs">
* "POST search/jobs"</a>
* endpoint in the REST API Documentation.
* @return string The search results, which can be parsed with
* Splunk_ResultsReader.
* @throws Splunk_IOException
*/
public function oneshotSearch($search, $args=array())
{
return $this->getJobs()->createOneshot($search, $args);
}
}