@itentialopensource/adapter-splunk 0.1.1 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +0 -1
- package/.jshintrc +3 -0
- package/AUTH.md +5 -11
- package/CALLS.md +317 -23
- package/CHANGELOG.md +16 -1
- package/CONTRIBUTING.md +1 -160
- package/ENHANCE.md +2 -2
- package/README.md +31 -22
- package/SYSTEMINFO.md +11 -3
- package/adapter.js +159 -330
- package/adapterBase.js +538 -873
- package/changelogs/changelog.md +9 -0
- package/metadata.json +59 -0
- package/package.json +23 -25
- package/pronghorn.json +474 -142
- package/propertiesSchema.json +444 -40
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +2340 -0
- package/report/adapter-openapi.yaml +1690 -0
- package/report/adapterInfo.json +10 -0
- package/report/updateReport1691508892522.json +120 -0
- package/report/updateReport1692202206847.json +120 -0
- package/report/updateReport1692203308193.json +120 -0
- package/report/updateReport1694469246825.json +120 -0
- package/sampleProperties.json +65 -4
- package/test/integration/adapterTestBasicGet.js +1 -1
- package/test/integration/adapterTestConnectivity.js +91 -42
- package/test/integration/adapterTestIntegration.js +130 -2
- package/test/unit/adapterBaseTestUnit.js +388 -313
- package/test/unit/adapterTestUnit.js +306 -109
- package/utils/adapterInfo.js +1 -1
- package/utils/addAuth.js +1 -1
- package/utils/artifactize.js +1 -1
- package/utils/checkMigrate.js +1 -1
- package/utils/entitiesToDB.js +1 -0
- package/utils/findPath.js +1 -1
- package/utils/methodDocumentor.js +57 -22
- package/utils/modify.js +13 -15
- package/utils/packModificationScript.js +1 -1
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +3 -10
- package/utils/tbUtils.js +2 -3
- package/utils/testRunner.js +1 -1
- package/utils/troubleshootingAdapter.js +1 -3
- package/workflows/README.md +0 -3
package/.eslintignore
CHANGED
package/.jshintrc
CHANGED
package/AUTH.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
## Authenticating Splunk Adapter
|
|
2
2
|
|
|
3
|
-
This document will go through the steps for authenticating the Splunk adapter with Basic Authentication. Properly configuring the properties for an adapter in IAP is critical for getting the adapter online. You can read more about adapter authentication <a href="https://
|
|
3
|
+
This document will go through the steps for authenticating the Splunk adapter with Basic Authentication. Properly configuring the properties for an adapter in IAP is critical for getting the adapter online. You can read more about adapter authentication <a href="https://docs.itential.com/opensource/docs/authentication" target="_blank">HERE</a>.
|
|
4
4
|
|
|
5
5
|
### Basic Authentication
|
|
6
6
|
The Splunk adapter requires Basic Authentication. If you change authentication methods, you should change this section accordingly and merge it back into the adapter repository.
|
|
@@ -12,18 +12,11 @@ STEPS
|
|
|
12
12
|
```json
|
|
13
13
|
"authentication": {
|
|
14
14
|
"auth_method": "basic user_password",
|
|
15
|
-
"username": "<username>",
|
|
16
|
-
"password": "<password>",
|
|
17
|
-
"token": "",
|
|
18
|
-
"token_timeout": 1800000,
|
|
19
|
-
"token_cache": "local",
|
|
20
|
-
"invalid_token_error": 401,
|
|
15
|
+
"username": "<your username>",
|
|
16
|
+
"password": "<your password>",
|
|
21
17
|
"auth_field": "header.headers.Authorization",
|
|
22
18
|
"auth_field_format": "Basic {b64}{username}:{password}{/b64}",
|
|
23
|
-
"auth_logging": false
|
|
24
|
-
"client_id": "",
|
|
25
|
-
"client_secret": "",
|
|
26
|
-
"grant_type": ""
|
|
19
|
+
"auth_logging": false
|
|
27
20
|
}
|
|
28
21
|
```
|
|
29
22
|
4. Restart the adapter. If your properties were set correctly, the adapter should go online.
|
|
@@ -36,4 +29,5 @@ STEPS
|
|
|
36
29
|
- The FULL REQUEST log to make sure the proper headers are being sent with the request.
|
|
37
30
|
- The FULL BODY log to make sure the payload is accurate.
|
|
38
31
|
- The CALL RETURN log to see what the other system is telling us.
|
|
32
|
+
- Credentials should be ** masked ** by the adapter so make sure you verify the username and password - including that there are erroneous spaces at the front or end.
|
|
39
33
|
- Remember when you are done to turn auth_logging off as you do not want to log credentials.
|
package/CALLS.md
CHANGED
|
@@ -19,7 +19,7 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
19
19
|
</tr>
|
|
20
20
|
<tr>
|
|
21
21
|
<td style="padding:15px">healthCheck(callback)</td>
|
|
22
|
-
<td style="padding:15px">This call ensures that the adapter can communicate with Splunk. The actual call that is used is defined in the adapter properties and .system entities action.json file.</td>
|
|
22
|
+
<td style="padding:15px">This call ensures that the adapter can communicate with Adapter for Splunk. The actual call that is used is defined in the adapter properties and .system entities action.json file.</td>
|
|
23
23
|
<td style="padding:15px">No</td>
|
|
24
24
|
</tr>
|
|
25
25
|
<tr>
|
|
@@ -29,7 +29,7 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
29
29
|
</tr>
|
|
30
30
|
<tr>
|
|
31
31
|
<td style="padding:15px">encryptProperty(property, technique, callback)</td>
|
|
32
|
-
<td style="padding:15px">This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with Splunk.</td>
|
|
32
|
+
<td style="padding:15px">This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with Adapter for Splunk.</td>
|
|
33
33
|
<td style="padding:15px">No</td>
|
|
34
34
|
</tr>
|
|
35
35
|
<tr>
|
|
@@ -37,11 +37,6 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
37
37
|
<td style="padding:15px">This call provides the ability to update the adapter configuration from IAP - includes actions, schema, mockdata and other configurations.</td>
|
|
38
38
|
<td style="padding:15px">Yes</td>
|
|
39
39
|
</tr>
|
|
40
|
-
<tr>
|
|
41
|
-
<td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td>
|
|
42
|
-
<td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td>
|
|
43
|
-
<td style="padding:15px">Yes</td>
|
|
44
|
-
</tr>
|
|
45
40
|
<tr>
|
|
46
41
|
<td style="padding:15px">iapSuspendAdapter(mode, callback)</td>
|
|
47
42
|
<td style="padding:15px">This call provides the ability to suspend the adapter and either have requests rejected or put into a queue to be processed after the adapter is resumed.</td>
|
|
@@ -57,12 +52,16 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
57
52
|
<td style="padding:15px">This call will return the requests that are waiting in the queue if throttling is enabled.</td>
|
|
58
53
|
<td style="padding:15px">Yes</td>
|
|
59
54
|
</tr>
|
|
55
|
+
<tr>
|
|
56
|
+
<td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td>
|
|
57
|
+
<td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td>
|
|
58
|
+
<td style="padding:15px">Yes</td>
|
|
59
|
+
</tr>
|
|
60
60
|
<tr>
|
|
61
61
|
<td style="padding:15px">iapTroubleshootAdapter(props, persistFlag, adapter, callback)</td>
|
|
62
62
|
<td style="padding:15px">This call can be used to check on the performance of the adapter - it checks connectivity, healthcheck and basic get calls.</td>
|
|
63
63
|
<td style="padding:15px">Yes</td>
|
|
64
64
|
</tr>
|
|
65
|
-
|
|
66
65
|
<tr>
|
|
67
66
|
<td style="padding:15px">iapRunAdapterHealthcheck(adapter, callback)</td>
|
|
68
67
|
<td style="padding:15px">This call will return the results of a healthcheck.</td>
|
|
@@ -83,6 +82,21 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
83
82
|
<td style="padding:15px">This call will push the adapter configuration from the entities directory into the Adapter or IAP Database.</td>
|
|
84
83
|
<td style="padding:15px">Yes</td>
|
|
85
84
|
</tr>
|
|
85
|
+
<tr>
|
|
86
|
+
<td style="padding:15px">iapDeactivateTasks(tasks, callback)</td>
|
|
87
|
+
<td style="padding:15px">This call provides the ability to remove tasks from the adapter.</td>
|
|
88
|
+
<td style="padding:15px">Yes</td>
|
|
89
|
+
</tr>
|
|
90
|
+
<tr>
|
|
91
|
+
<td style="padding:15px">iapActivateTasks(tasks, callback)</td>
|
|
92
|
+
<td style="padding:15px">This call provides the ability to add deactivated tasks back into the adapter.</td>
|
|
93
|
+
<td style="padding:15px">Yes</td>
|
|
94
|
+
</tr>
|
|
95
|
+
<tr>
|
|
96
|
+
<td style="padding:15px">iapExpandedGenericAdapterRequest(metadata, uriPath, restMethod, pathVars, queryData, requestBody, addlHeaders, callback)</td>
|
|
97
|
+
<td style="padding:15px">This is an expanded Generic Call. The metadata object allows us to provide many new capabilities within the generic request.</td>
|
|
98
|
+
<td style="padding:15px">Yes</td>
|
|
99
|
+
</tr>
|
|
86
100
|
<tr>
|
|
87
101
|
<td style="padding:15px">genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
|
|
88
102
|
<td style="padding:15px">This call allows you to provide the path to have the adapter call. It is an easy way to incorporate paths that have not been built into the adapter yet.</td>
|
|
@@ -94,19 +108,42 @@ These are adapter methods that IAP or you might use. There are some other method
|
|
|
94
108
|
<td style="padding:15px">Yes</td>
|
|
95
109
|
</tr>
|
|
96
110
|
<tr>
|
|
97
|
-
<td style="padding:15px">
|
|
98
|
-
<td style="padding:15px">
|
|
99
|
-
<td style="padding:15px">
|
|
111
|
+
<td style="padding:15px">iapRunAdapterLint(callback)</td>
|
|
112
|
+
<td style="padding:15px">Runs lint on the addapter and provides the information back.</td>
|
|
113
|
+
<td style="padding:15px">Yes</td>
|
|
100
114
|
</tr>
|
|
101
115
|
<tr>
|
|
102
|
-
<td style="padding:15px">
|
|
103
|
-
<td style="padding:15px">
|
|
104
|
-
<td style="padding:15px">
|
|
116
|
+
<td style="padding:15px">iapRunAdapterTests(callback)</td>
|
|
117
|
+
<td style="padding:15px">Runs baseunit and unit tests on the adapter and provides the information back.</td>
|
|
118
|
+
<td style="padding:15px">Yes</td>
|
|
105
119
|
</tr>
|
|
106
120
|
<tr>
|
|
107
|
-
<td style="padding:15px">
|
|
108
|
-
<td style="padding:15px">This call
|
|
109
|
-
<td style="padding:15px">
|
|
121
|
+
<td style="padding:15px">iapGetAdapterInventory(callback)</td>
|
|
122
|
+
<td style="padding:15px">This call provides some inventory related information about the adapter.</td>
|
|
123
|
+
<td style="padding:15px">Yes</td>
|
|
124
|
+
</tr>
|
|
125
|
+
</table>
|
|
126
|
+
<br>
|
|
127
|
+
|
|
128
|
+
### Adapter Cache Calls
|
|
129
|
+
|
|
130
|
+
These are adapter methods that are used for adapter caching. If configured, the adapter will cache based on the interval provided. However, you can force a population of the cache manually as well.
|
|
131
|
+
|
|
132
|
+
<table border="1" class="bordered-table">
|
|
133
|
+
<tr>
|
|
134
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
135
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
136
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
137
|
+
</tr>
|
|
138
|
+
<tr>
|
|
139
|
+
<td style="padding:15px">iapPopulateEntityCache(entityTypes, callback)</td>
|
|
140
|
+
<td style="padding:15px">This call populates the adapter cache.</td>
|
|
141
|
+
<td style="padding:15px">Yes</td>
|
|
142
|
+
</tr>
|
|
143
|
+
<tr>
|
|
144
|
+
<td style="padding:15px">iapRetrieveEntitiesCache(entityType, options, callback)</td>
|
|
145
|
+
<td style="padding:15px">This call retrieves the specific items from the adapter cache.</td>
|
|
146
|
+
<td style="padding:15px">Yes</td>
|
|
110
147
|
</tr>
|
|
111
148
|
</table>
|
|
112
149
|
<br>
|
|
@@ -129,32 +166,31 @@ These are adapter methods that are used to integrate to IAP Brokers. This adapte
|
|
|
129
166
|
<tr>
|
|
130
167
|
<td style="padding:15px">getDevice(deviceName, callback)</td>
|
|
131
168
|
<td style="padding:15px">This call returns the details of the requested device.</td>
|
|
132
|
-
<td style="padding:15px">
|
|
169
|
+
<td style="padding:15px">No</td>
|
|
133
170
|
</tr>
|
|
134
171
|
<tr>
|
|
135
172
|
<td style="padding:15px">getDevicesFiltered(options, callback)</td>
|
|
136
173
|
<td style="padding:15px">This call returns the list of devices that match the criteria provided in the options filter.</td>
|
|
137
|
-
<td style="padding:15px">
|
|
174
|
+
<td style="padding:15px">No</td>
|
|
138
175
|
</tr>
|
|
139
176
|
<tr>
|
|
140
177
|
<td style="padding:15px">isAlive(deviceName, callback)</td>
|
|
141
178
|
<td style="padding:15px">This call returns whether the device status is active</td>
|
|
142
|
-
<td style="padding:15px">
|
|
179
|
+
<td style="padding:15px">No</td>
|
|
143
180
|
</tr>
|
|
144
181
|
<tr>
|
|
145
182
|
<td style="padding:15px">getConfig(deviceName, format, callback)</td>
|
|
146
183
|
<td style="padding:15px">This call returns the configuration for the selected device.</td>
|
|
147
|
-
<td style="padding:15px">
|
|
184
|
+
<td style="padding:15px">No</td>
|
|
148
185
|
</tr>
|
|
149
186
|
<tr>
|
|
150
187
|
<td style="padding:15px">iapGetDeviceCount(callback)</td>
|
|
151
188
|
<td style="padding:15px">This call returns the count of devices.</td>
|
|
152
|
-
<td style="padding:15px">
|
|
189
|
+
<td style="padding:15px">No</td>
|
|
153
190
|
</tr>
|
|
154
191
|
</table>
|
|
155
192
|
<br>
|
|
156
193
|
|
|
157
|
-
|
|
158
194
|
### Specific Adapter Calls
|
|
159
195
|
|
|
160
196
|
Specific adapter calls are built based on the API of the Splunk. The Adapter Builder creates the proper method comments for generating JS-DOC for the adapter. This is the best way to get information on the calls.
|
|
@@ -166,5 +202,263 @@ Specific adapter calls are built based on the API of the Splunk. The Adapter Bui
|
|
|
166
202
|
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Path</span></th>
|
|
167
203
|
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
168
204
|
</tr>
|
|
205
|
+
<tr>
|
|
206
|
+
<td style="padding:15px">getDataCommandsByName(name, callback)</td>
|
|
207
|
+
<td style="padding:15px">getDataCommandsByName</td>
|
|
208
|
+
<td style="padding:15px">{base_path}/{version}/services/data/commands/{pathv1}?{query}</td>
|
|
209
|
+
<td style="padding:15px">Yes</td>
|
|
210
|
+
</tr>
|
|
211
|
+
<tr>
|
|
212
|
+
<td style="padding:15px">getSavedSearches(earliestTime10202022, latestTime, listDefaultActionArgs, addOrphanField, callback)</td>
|
|
213
|
+
<td style="padding:15px">getSavedSearches</td>
|
|
214
|
+
<td style="padding:15px">{base_path}/{version}/services/saved/searches?{query}</td>
|
|
215
|
+
<td style="padding:15px">Yes</td>
|
|
216
|
+
</tr>
|
|
217
|
+
<tr>
|
|
218
|
+
<td style="padding:15px">deleteSavedSearchesByName(name, body, callback)</td>
|
|
219
|
+
<td style="padding:15px">deleteSavedSearchesByName</td>
|
|
220
|
+
<td style="padding:15px">{base_path}/{version}/services/admin/search/saved/searches/{pathv1}?{query}</td>
|
|
221
|
+
<td style="padding:15px">Yes</td>
|
|
222
|
+
</tr>
|
|
223
|
+
<tr>
|
|
224
|
+
<td style="padding:15px">getSavedSearchesByName(name, earliestTime10202022, latestTime, listDefaultActionArgs, addOrphanField, callback)</td>
|
|
225
|
+
<td style="padding:15px">getSavedSearchesByName</td>
|
|
226
|
+
<td style="padding:15px">{base_path}/{version}/services/admin/search/saved/searches/{pathv1}?{query}</td>
|
|
227
|
+
<td style="padding:15px">Yes</td>
|
|
228
|
+
</tr>
|
|
229
|
+
<tr>
|
|
230
|
+
<td style="padding:15px">postSavedSearches(name, body, callback)</td>
|
|
231
|
+
<td style="padding:15px">postSavedSearches</td>
|
|
232
|
+
<td style="padding:15px">{base_path}/{version}/services/admin/search/saved/searches/{pathv1}?{query}</td>
|
|
233
|
+
<td style="padding:15px">Yes</td>
|
|
234
|
+
</tr>
|
|
235
|
+
<tr>
|
|
236
|
+
<td style="padding:15px">postSavedSearchesAcknowledge(name, body, callback)</td>
|
|
237
|
+
<td style="padding:15px">postSavedSearchesAcknowledge</td>
|
|
238
|
+
<td style="padding:15px">{base_path}/{version}/services/admin/search/saved/searches/{pathv1}/acknowledge?{query}</td>
|
|
239
|
+
<td style="padding:15px">Yes</td>
|
|
240
|
+
</tr>
|
|
241
|
+
<tr>
|
|
242
|
+
<td style="padding:15px">postSavedSearchesDispatchByName(name, body, callback)</td>
|
|
243
|
+
<td style="padding:15px">postSavedSearchesDispatchByName</td>
|
|
244
|
+
<td style="padding:15px">{base_path}/{version}/services/saved/searches/{pathv1}/dispatch?{query}</td>
|
|
245
|
+
<td style="padding:15px">Yes</td>
|
|
246
|
+
</tr>
|
|
247
|
+
<tr>
|
|
248
|
+
<td style="padding:15px">getSavedSearchesHistoryByName(name, savedsearch, callback)</td>
|
|
249
|
+
<td style="padding:15px">getSavedSearchesHistoryByName</td>
|
|
250
|
+
<td style="padding:15px">{base_path}/{version}/services/saved/searches/{pathv1}/history?{query}</td>
|
|
251
|
+
<td style="padding:15px">Yes</td>
|
|
252
|
+
</tr>
|
|
253
|
+
<tr>
|
|
254
|
+
<td style="padding:15px">postSavedSearchesReschedule(name, body, callback)</td>
|
|
255
|
+
<td style="padding:15px">postSavedSearchesReschedule</td>
|
|
256
|
+
<td style="padding:15px">{base_path}/{version}/services/saved/searches/{pathv1}/reschedule?{query}</td>
|
|
257
|
+
<td style="padding:15px">Yes</td>
|
|
258
|
+
</tr>
|
|
259
|
+
<tr>
|
|
260
|
+
<td style="padding:15px">getSavedSearchesScheduledItemsByName(name, earliestTime, latestTime, callback)</td>
|
|
261
|
+
<td style="padding:15px">getSavedSearchesScheduledItemsByName</td>
|
|
262
|
+
<td style="padding:15px">{base_path}/{version}/services/saved/searches/{pathv1}/scheduled_times?{query}</td>
|
|
263
|
+
<td style="padding:15px">Yes</td>
|
|
264
|
+
</tr>
|
|
265
|
+
<tr>
|
|
266
|
+
<td style="padding:15px">getSavedSearchesSupresssByName(name, expiration, callback)</td>
|
|
267
|
+
<td style="padding:15px">getSavedSearchesSupresssByName</td>
|
|
268
|
+
<td style="padding:15px">{base_path}/{version}/services/saved/searches/{pathv1}/suppress?{query}</td>
|
|
269
|
+
<td style="padding:15px">Yes</td>
|
|
270
|
+
</tr>
|
|
271
|
+
<tr>
|
|
272
|
+
<td style="padding:15px">getScheduledViews(count, f, offset, search, sortDir, sortKey, sortMode, summarize, callback)</td>
|
|
273
|
+
<td style="padding:15px">getScheduledViews</td>
|
|
274
|
+
<td style="padding:15px">{base_path}/{version}/services/scheduled/views?{query}</td>
|
|
275
|
+
<td style="padding:15px">Yes</td>
|
|
276
|
+
</tr>
|
|
277
|
+
<tr>
|
|
278
|
+
<td style="padding:15px">deleteScheduledViewByName(name, body, callback)</td>
|
|
279
|
+
<td style="padding:15px">deleteScheduledViewByName</td>
|
|
280
|
+
<td style="padding:15px">{base_path}/{version}/services/scheduled/views/{pathv1}?{query}</td>
|
|
281
|
+
<td style="padding:15px">Yes</td>
|
|
282
|
+
</tr>
|
|
283
|
+
<tr>
|
|
284
|
+
<td style="padding:15px">getScheduledViewByName(name, callback)</td>
|
|
285
|
+
<td style="padding:15px">getScheduledViewByName</td>
|
|
286
|
+
<td style="padding:15px">{base_path}/{version}/services/scheduled/views/{pathv1}?{query}</td>
|
|
287
|
+
<td style="padding:15px">Yes</td>
|
|
288
|
+
</tr>
|
|
289
|
+
<tr>
|
|
290
|
+
<td style="padding:15px">postScheduledViewByName(name, body, callback)</td>
|
|
291
|
+
<td style="padding:15px">postScheduledViewByName</td>
|
|
292
|
+
<td style="padding:15px">{base_path}/{version}/services/scheduled/views/{pathv1}?{query}</td>
|
|
293
|
+
<td style="padding:15px">Yes</td>
|
|
294
|
+
</tr>
|
|
295
|
+
<tr>
|
|
296
|
+
<td style="padding:15px">postScheduledViewDispatch(name, body, callback)</td>
|
|
297
|
+
<td style="padding:15px">postScheduledViewDispatch</td>
|
|
298
|
+
<td style="padding:15px">{base_path}/{version}/services/scheduled/views/{pathv1}/dispatch?{query}</td>
|
|
299
|
+
<td style="padding:15px">Yes</td>
|
|
300
|
+
</tr>
|
|
301
|
+
<tr>
|
|
302
|
+
<td style="padding:15px">getScheduledViewHistory(name, callback)</td>
|
|
303
|
+
<td style="padding:15px">getScheduledViewHistory</td>
|
|
304
|
+
<td style="padding:15px">{base_path}/{version}/services/scheduled/views/{pathv1}/history?{query}</td>
|
|
305
|
+
<td style="padding:15px">Yes</td>
|
|
306
|
+
</tr>
|
|
307
|
+
<tr>
|
|
308
|
+
<td style="padding:15px">postScheduledViewHistory(name, body, callback)</td>
|
|
309
|
+
<td style="padding:15px">postScheduledViewHistory</td>
|
|
310
|
+
<td style="padding:15px">{base_path}/{version}/services/scheduled/views/{pathv1}/reschedule?{query}</td>
|
|
311
|
+
<td style="padding:15px">Yes</td>
|
|
312
|
+
</tr>
|
|
313
|
+
<tr>
|
|
314
|
+
<td style="padding:15px">getScheduledViewScheduledTimes(name, earliestTime, latestTime, callback)</td>
|
|
315
|
+
<td style="padding:15px">getScheduledViewScheduledTimes</td>
|
|
316
|
+
<td style="padding:15px">{base_path}/{version}/services/scheduled/views/{pathv1}/scheduled_times?{query}</td>
|
|
317
|
+
<td style="padding:15px">Yes</td>
|
|
318
|
+
</tr>
|
|
319
|
+
<tr>
|
|
320
|
+
<td style="padding:15px">getSearchJobs(count, f, offset, search, sortDir, sortKey, sortMode, summarize, callback)</td>
|
|
321
|
+
<td style="padding:15px">getSearchJobs</td>
|
|
322
|
+
<td style="padding:15px">{base_path}/{version}/services/search/jobs?{query}</td>
|
|
323
|
+
<td style="padding:15px">Yes</td>
|
|
324
|
+
</tr>
|
|
325
|
+
<tr>
|
|
326
|
+
<td style="padding:15px">postSearchJobs(body, callback)</td>
|
|
327
|
+
<td style="padding:15px">postSearchJobs</td>
|
|
328
|
+
<td style="padding:15px">{base_path}/{version}/services/search/jobs?{query}</td>
|
|
329
|
+
<td style="padding:15px">Yes</td>
|
|
330
|
+
</tr>
|
|
331
|
+
<tr>
|
|
332
|
+
<td style="padding:15px">getSearchJobsExport(callback)</td>
|
|
333
|
+
<td style="padding:15px">getSearchJobsExport</td>
|
|
334
|
+
<td style="padding:15px">{base_path}/{version}/services/search/jobs/export?{query}</td>
|
|
335
|
+
<td style="padding:15px">Yes</td>
|
|
336
|
+
</tr>
|
|
337
|
+
<tr>
|
|
338
|
+
<td style="padding:15px">postSearchJobsExport(body, callback)</td>
|
|
339
|
+
<td style="padding:15px">postSearchJobsExport</td>
|
|
340
|
+
<td style="padding:15px">{base_path}/{version}/services/search/jobs/export?{query}</td>
|
|
341
|
+
<td style="padding:15px">Yes</td>
|
|
342
|
+
</tr>
|
|
343
|
+
<tr>
|
|
344
|
+
<td style="padding:15px">deleteSearchJobsById(searchId, body, callback)</td>
|
|
345
|
+
<td style="padding:15px">deleteSearchJobsById</td>
|
|
346
|
+
<td style="padding:15px">{base_path}/{version}/services/search/jobs/{pathv1}?{query}</td>
|
|
347
|
+
<td style="padding:15px">Yes</td>
|
|
348
|
+
</tr>
|
|
349
|
+
<tr>
|
|
350
|
+
<td style="padding:15px">getSearchJobsById(searchId, callback)</td>
|
|
351
|
+
<td style="padding:15px">getSearchJobsById</td>
|
|
352
|
+
<td style="padding:15px">{base_path}/{version}/services/search/jobs/{pathv1}?{query}</td>
|
|
353
|
+
<td style="padding:15px">Yes</td>
|
|
354
|
+
</tr>
|
|
355
|
+
<tr>
|
|
356
|
+
<td style="padding:15px">postSearchJobsById(searchId, body, callback)</td>
|
|
357
|
+
<td style="padding:15px">postSearchJobsById</td>
|
|
358
|
+
<td style="padding:15px">{base_path}/{version}/services/search/jobs/{pathv1}?{query}</td>
|
|
359
|
+
<td style="padding:15px">Yes</td>
|
|
360
|
+
</tr>
|
|
361
|
+
<tr>
|
|
362
|
+
<td style="padding:15px">postSearchJobsByIdControl(searchId, body, callback)</td>
|
|
363
|
+
<td style="padding:15px">postSearchJobsByIdControl</td>
|
|
364
|
+
<td style="padding:15px">{base_path}/{version}/services/search/jobs/{pathv1}/control?{query}</td>
|
|
365
|
+
<td style="padding:15px">Yes</td>
|
|
366
|
+
</tr>
|
|
367
|
+
<tr>
|
|
368
|
+
<td style="padding:15px">getSearchJobsByIdEvents(searchId, count, maxLines, outputMode, truncationMode, callback)</td>
|
|
369
|
+
<td style="padding:15px">getSearchJobsByIdEvents</td>
|
|
370
|
+
<td style="padding:15px">{base_path}/{version}/services/search/jobs/{pathv1}/events?{query}</td>
|
|
371
|
+
<td style="padding:15px">Yes</td>
|
|
372
|
+
</tr>
|
|
373
|
+
<tr>
|
|
374
|
+
<td style="padding:15px">getSearchJobsByIdResults(searchId, count, addSummaryToMetadata, search, callback)</td>
|
|
375
|
+
<td style="padding:15px">getSearchJobsByIdResults</td>
|
|
376
|
+
<td style="padding:15px">{base_path}/{version}/services/search/jobs/{pathv1}/results?{query}</td>
|
|
377
|
+
<td style="padding:15px">Yes</td>
|
|
378
|
+
</tr>
|
|
379
|
+
<tr>
|
|
380
|
+
<td style="padding:15px">getSearchJobsByIdResultsPreview(searchId, count, addSummaryToMetadata, search, callback)</td>
|
|
381
|
+
<td style="padding:15px">getSearchJobsByIdResultsPreview</td>
|
|
382
|
+
<td style="padding:15px">{base_path}/{version}/services/search/jobs/{pathv1}/results_preview?{query}</td>
|
|
383
|
+
<td style="padding:15px">Yes</td>
|
|
384
|
+
</tr>
|
|
385
|
+
<tr>
|
|
386
|
+
<td style="padding:15px">getSearchJobsSearchLogs(searchId, attachment, callback)</td>
|
|
387
|
+
<td style="padding:15px">getSearchJobsSearchLogs</td>
|
|
388
|
+
<td style="padding:15px">{base_path}/{version}/services/search/jobs/{pathv1}/search.log?{query}</td>
|
|
389
|
+
<td style="padding:15px">Yes</td>
|
|
390
|
+
</tr>
|
|
391
|
+
<tr>
|
|
392
|
+
<td style="padding:15px">getSearchJobsbyIdSummary(searchId, callback)</td>
|
|
393
|
+
<td style="padding:15px">getSearchJobsbyIdSummary</td>
|
|
394
|
+
<td style="padding:15px">{base_path}/{version}/services/search/jobs/{pathv1}/summary?{query}</td>
|
|
395
|
+
<td style="padding:15px">Yes</td>
|
|
396
|
+
</tr>
|
|
397
|
+
<tr>
|
|
398
|
+
<td style="padding:15px">getSearchJobsByIdTimeline(searchId, outputTimeFormat, timeFormat, callback)</td>
|
|
399
|
+
<td style="padding:15px">getSearchJobsByIdTimeline</td>
|
|
400
|
+
<td style="padding:15px">{base_path}/{version}/services/search/jobs/{pathv1}/timeline?{query}</td>
|
|
401
|
+
<td style="padding:15px">Yes</td>
|
|
402
|
+
</tr>
|
|
403
|
+
<tr>
|
|
404
|
+
<td style="padding:15px">getSearchParser(q, callback)</td>
|
|
405
|
+
<td style="padding:15px">getSearchParser</td>
|
|
406
|
+
<td style="padding:15px">{base_path}/{version}/services/search/parser?{query}</td>
|
|
407
|
+
<td style="padding:15px">Yes</td>
|
|
408
|
+
</tr>
|
|
409
|
+
<tr>
|
|
410
|
+
<td style="padding:15px">getSearchScheduler(callback)</td>
|
|
411
|
+
<td style="padding:15px">getSearchScheduler</td>
|
|
412
|
+
<td style="padding:15px">{base_path}/{version}/services/search/scheduler?{query}</td>
|
|
413
|
+
<td style="padding:15px">Yes</td>
|
|
414
|
+
</tr>
|
|
415
|
+
<tr>
|
|
416
|
+
<td style="padding:15px">postSearchSchedulerStatus(body, callback)</td>
|
|
417
|
+
<td style="padding:15px">postSearchSchedulerStatus</td>
|
|
418
|
+
<td style="padding:15px">{base_path}/{version}/services/search/scheduler/status?{query}</td>
|
|
419
|
+
<td style="padding:15px">Yes</td>
|
|
420
|
+
</tr>
|
|
421
|
+
<tr>
|
|
422
|
+
<td style="padding:15px">getSearchTimerParser(time, callback)</td>
|
|
423
|
+
<td style="padding:15px">getSearchTimerParser</td>
|
|
424
|
+
<td style="padding:15px">{base_path}/{version}/services/search/timeparse?{query}</td>
|
|
425
|
+
<td style="padding:15px">Yes</td>
|
|
426
|
+
</tr>
|
|
427
|
+
<tr>
|
|
428
|
+
<td style="padding:15px">getSearchTypeHead(count, prefix, callback)</td>
|
|
429
|
+
<td style="padding:15px">getSearchTypeHead</td>
|
|
430
|
+
<td style="padding:15px">{base_path}/{version}/services/search/typeahead?{query}</td>
|
|
431
|
+
<td style="padding:15px">Yes</td>
|
|
432
|
+
</tr>
|
|
433
|
+
<tr>
|
|
434
|
+
<td style="padding:15px">getAlertActions(count, f, offset, search, sortDir, sortKey, sortMode, summarize, callback)</td>
|
|
435
|
+
<td style="padding:15px">getAlertActions</td>
|
|
436
|
+
<td style="padding:15px">{base_path}/{version}/services/admin/-/alerts/alert_actions?{query}</td>
|
|
437
|
+
<td style="padding:15px">Yes</td>
|
|
438
|
+
</tr>
|
|
439
|
+
<tr>
|
|
440
|
+
<td style="padding:15px">getFiredAlerts(count, f, offset, search, sortDir, sortKey, sortMode, summarize, callback)</td>
|
|
441
|
+
<td style="padding:15px">getFiredAlerts</td>
|
|
442
|
+
<td style="padding:15px">{base_path}/{version}/services/admin/search/alerts/fired_alerts?{query}</td>
|
|
443
|
+
<td style="padding:15px">Yes</td>
|
|
444
|
+
</tr>
|
|
445
|
+
<tr>
|
|
446
|
+
<td style="padding:15px">getFiredAlertsbyName(name, callback)</td>
|
|
447
|
+
<td style="padding:15px">getFiredAlertsbyName</td>
|
|
448
|
+
<td style="padding:15px">{base_path}/{version}/services/admin/search/alerts/fired_alerts/{pathv1}?{query}</td>
|
|
449
|
+
<td style="padding:15px">Yes</td>
|
|
450
|
+
</tr>
|
|
451
|
+
<tr>
|
|
452
|
+
<td style="padding:15px">deleteFiredAlertsByName(name, body, callback)</td>
|
|
453
|
+
<td style="padding:15px">deleteFiredAlertsByName</td>
|
|
454
|
+
<td style="padding:15px">{base_path}/{version}/services/admin/search/alerts/fired_alerts/{pathv1}?{query}</td>
|
|
455
|
+
<td style="padding:15px">Yes</td>
|
|
456
|
+
</tr>
|
|
457
|
+
<tr>
|
|
458
|
+
<td style="padding:15px">getDataCommands(callback)</td>
|
|
459
|
+
<td style="padding:15px">getDataCommands</td>
|
|
460
|
+
<td style="padding:15px">{base_path}/{version}/services/nobody/search/data/commands?{query}</td>
|
|
461
|
+
<td style="padding:15px">Yes</td>
|
|
462
|
+
</tr>
|
|
169
463
|
</table>
|
|
170
464
|
<br>
|
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
## 0.3.0 [10-19-2023]
|
|
3
|
+
|
|
4
|
+
* Adapter Engine has been updated and the changes are being migrated to the adapter
|
|
5
|
+
|
|
6
|
+
See merge request itentialopensource/adapters/telemetry-analytics/adapter-splunk!1
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 0.2.0 [09-27-2023]
|
|
11
|
+
|
|
12
|
+
* Adapter Engine has been updated and the changes are being migrated to the adapter
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/telemetry-analytics/adapter-splunk!1
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
2
18
|
## 0.1.1 [09-30-2022]
|
|
3
19
|
|
|
4
20
|
* Bug fixes and performance improvements
|
|
@@ -6,4 +22,3 @@
|
|
|
6
22
|
See commit d579c57
|
|
7
23
|
|
|
8
24
|
---
|
|
9
|
-
|