You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/splunk/bin/icon_splunk
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,8 @@ from sys import argv
6
6
7
7
Name="Splunk"
8
8
Vendor="rapid7"
9
-
Version="3.0.4"
10
-
Description="The Splunkplugin allows you to search, monitor, and analyze machine data"
9
+
Version="3.0.5"
10
+
Description="[Splunk](https://www.splunk.com/) captures, indexes, and correlates real-time data in a searchable repository from which it can generate graphs, reports, alerts, dashboards, and visualizations. This plugin allows you to interact with Splunk by hooking alerts to trigger InsightConnect workflows, run (saved) searches, retrieve search results, and even insert data back into Splunk from a workflow"
Copy file name to clipboardExpand all lines: plugins/splunk/help.md
+69-73Lines changed: 69 additions & 73 deletions
Original file line number
Diff line number
Diff line change
@@ -1,45 +1,41 @@
1
1
# Description
2
2
3
-
[Splunk](https://www.splunk.com/) captures, indexes, and correlates real-time data in a searchable repository from which it can generate graphs, reports, alerts, dashboards, and visualizations. This plugin allows you to interact with Splunk by hooking alerts to trigger InsightConnect workflows, run (saved) searches, retrieve search results, and even insert data back into Splunk from a workflow.
4
-
5
-
To get Splunk alerts or send saved searches to InsightConnect, please use the [InsightConnect Splunk App](https://splunkbase.splunk.com/app/4673/).
3
+
[Splunk](https://www.splunk.com/) captures, indexes, and correlates real-time data in a searchable repository from which it can generate graphs, reports, alerts, dashboards, and visualizations. This plugin allows you to interact with Splunk by hooking alerts to trigger InsightConnect workflows, run (saved) searches, retrieve search results, and even insert data back into Splunk from a workflow
6
4
7
5
# Key Features
8
-
9
-
* Run a search query to get the results from your Splunk instance
10
-
* Display search results from a specified job
11
-
* Run, create, delete, and list saved searches to store and rerun queries over time
12
-
* List and modify saved search properties to view and update your reusable queries
13
-
* Get saved search job history to retrieve the history of a specified saved search
6
+
7
+
* Run a search query to get the results from your Splunk instance
8
+
* Display search results from a specified job
9
+
* Run, create, delete, and list saved searches to store and rerun queries over time
10
+
* List and modify saved search properties to view and update your reusable queries
11
+
* Get saved search job history to retrieve the history of a specified saved search
14
12
* Insert events into an index to update your Splunk instance
15
13
16
14
# Requirements
17
-
18
-
* Administrative credentials
19
-
* Splunk host IP address or hostname
15
+
16
+
* Administrative credentials
17
+
* Splunk host IP address or hostname
20
18
* Splunk API port
21
19
22
20
# Supported Product Versions
23
-
21
+
24
22
* Splunk SDK 1.7.4
25
23
26
24
# Documentation
27
25
28
26
## Setup
29
27
30
-
To connect to Splunk, you must have valid credentials and network access to the Splunk API port (Splunk's default is TCP/8089). This plugin supports both the Free and Enterprise Splunk licenses.
28
+
The connection configuration accepts the following parameters:
31
29
32
-
The connection configuration accepts the following parameters:
|properties|object|None|False|JSON object containing additional properties to save with the saved search|None|{"description":"ExampleDescription","is_scheduled":true}|
|properties|object|None|False|JSON object containing additional properties to save with the saved search|None|{"description":"ExampleDescription","is_scheduled":true}|None|None|
|count|integer|100|True|The maximum number of results to return. Set to 0 for unlimited results|None|100|
409
-
|query|string|None|True|Run a search query|None|search *|
410
-
|search_timeframe|string|None|False|The specified timeframe for the search. Default searches over all time. Separated with dash, in the form of Unix epoch timestamps, e.g. 1498824598-1598824598. If end time is left blank, it defaults to the current time|None|1598984278-1598984478|
|count|integer|100|True|The maximum number of results to return. Set to 0 for unlimited results|None|100|None|None|
405
+
|query|string|None|True|Run a search query|None|search *|None|None|
406
+
|search_timeframe|string|None|False|The specified timeframe for the search. Default searches over all time. Separated with dash, in the form of Unix epoch timestamps, e.g. 1498824598-1598824598. If end time is left blank, it defaults to the current time|None|1598984278-1598984478|None|None|
411
407
412
408
Example input:
413
409
@@ -441,14 +437,14 @@ Example output:
441
437
```
442
438
443
439
#### View Saved Search Properties
444
-
440
+
445
441
This action is used to returns the properties for a saved search
Copy file name to clipboardExpand all lines: plugins/splunk/plugin.spec.yaml
+28-3Lines changed: 28 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,8 @@ extension: plugin
3
3
products: [insightconnect]
4
4
name: splunk
5
5
title: Splunk
6
-
description: The Splunkplugin allows you to search, monitor, and analyze machine data
7
-
version: 3.0.4
6
+
description: "[Splunk](https://www.splunk.com/) captures, indexes, and correlates real-time data in a searchable repository from which it can generate graphs, reports, alerts, dashboards, and visualizations. This plugin allows you to interact with Splunk by hooking alerts to trigger InsightConnect workflows, run (saved) searches, retrieve search results, and even insert data back into Splunk from a workflow"
7
+
version: 3.0.5
8
8
connection_version: 3
9
9
vendor: rapid7
10
10
support: rapid7
@@ -21,10 +21,16 @@ requirements:
21
21
- Administrative credentials
22
22
- Splunk host IP address or hostname
23
23
- Splunk API port
24
+
troubleshooting:
25
+
- "If issues are encountered when using the `Search` action, try prefixing your query with `search`, example: `search index=\"*\" | head 5`."
Copy file name to clipboardExpand all lines: plugins/splunk/setup.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,8 @@
3
3
4
4
5
5
setup(name="splunk-rapid7-plugin",
6
-
version="3.0.4",
7
-
description="The Splunkplugin allows you to search, monitor, and analyze machine data",
6
+
version="3.0.5",
7
+
description="[Splunk](https://www.splunk.com/) captures, indexes, and correlates real-time data in a searchable repository from which it can generate graphs, reports, alerts, dashboards, and visualizations. This plugin allows you to interact with Splunk by hooking alerts to trigger InsightConnect workflows, run (saved) searches, retrieve search results, and even insert data back into Splunk from a workflow",
0 commit comments