The Red Hat Ecosystem Catalog is the official source for discovering and learning more about the Red Hat Ecosystem of both Red Hat and certified third-party products and services.
We’re the world’s leading provider of enterprise open source solutions—including Linux, cloud, container, and Kubernetes. We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

11Modules9Plugins1Dependency
Ansible Collection for Splunk IT Service Intelligence
The Ansible ITSI collection includes variety of content to help automate the use of Splunk IT Service Intelligence.
Before using this collection, you need to install it with the Ansible Galaxy command-line tool:
ansible-galaxy collection install splunk.itsi
You can also include it in a requirements.yml file and install it with ansible-galaxy collection install -r requirements.yml, using the format:
---
collections:
- name: splunk.itsi
Note that if you install the collection from Ansible Galaxy, it will not be upgraded automatically when you upgrade the ansible package. To upgrade the collection to the latest available version, run the following command:
ansible-galaxy collection install splunk.itsi --upgrade
You can also install a specific version of the collection, for example, if you need to downgrade when something is broken in the latest version (please report an issue in this repository). Use the following syntax to install version 1.0.0
ansible-galaxy collection install splunk.itsi==1.0.0
See using Ansible collections for more details.
We follow the Ansible Code of Conduct in all our interactions within this project.
If you encounter abusive behavior, please refer to the policy violations section of the Code for information on how to raise a complaint.
For more information about communication, see the Ansible communication guide.
As a Red Hat Ansible Certified Content, this collection is entitled to support through Ansible Automation Platform (AAP).
If a support case cannot be opened with Red Hat and the collection has been obtained either from Galaxy or GitHub, there is community support available at no charge.
We welcome community contributions to this collection. If you find problems, please open an issue or create a PR against the Splunk ITSI collection repository. See Contributing to Ansible-maintained collections for complete details.
The content of this collection is made by people like you, a community of individuals collaborating on making the world better through developing automation software.
We are actively accepting new contributors and all types of contributions are very welcome.
Don't know how to start? Refer to the Ansible community guide!
Want to submit code changes? Take a look at the Quick-start development guide.
We also use the following guidelines:
The current maintainers are listed in the MAINTAINERS file. If you have questions or need help, feel free to mention them in the proposals.
To learn how to maintain/become a maintainer of this collection, refer to the Maintainer guidelines.
It is necessary for maintainers of this collection to be subscribed to:
Watch button -> All Activity in the upper right corner of the repository's homepage).They also should be subscribed to Ansible's The Bullhorn newsletter.
The process of decision making in this collection is based on discussing and finding consensus among participants.
Every voice is important. If you have something on your mind, create an issue or dedicated discussion and let's discuss it!
This collection has been tested against the following Ansible versions: >=2.17.0.
Plugins and modules within a collection may be tested with only specific Ansible versions. A collection may contain metadata that identifies these versions. PEP440 is the schema used to describe the versions of Ansible.
| Name | Description |
|---|---|
| Splunk ITSI EDA Rulebook Activation | Setup and configuration for EDA rulebook activation with Splunk ITSI webhook integration |
| Name | Description |
|---|---|
| splunk.itsi.itsi_api_client | HttpApi Plugin for Splunk ITSI |
| Name | Description |
|---|---|
| splunk.itsi.itsi_add_episode_comments | Add comments to Splunk ITSI episodes |
| splunk.itsi.itsi_aggregation_policy | Manage Splunk ITSI aggregation policies |
| splunk.itsi.itsi_aggregation_policy_info | Get information about Splunk ITSI aggregation policies |
| splunk.itsi.itsi_correlation_search | Manage Splunk ITSI correlation searches |
| splunk.itsi.itsi_correlation_search_info | Query Splunk ITSI correlation searches |
| splunk.itsi.itsi_episode_details_info | Read Splunk ITSI notable_event_group (episodes) |
| splunk.itsi.itsi_glass_table | Manage Splunk ITSI Glass Table objects via itoa_interface |
| splunk.itsi.itsi_glass_table_info | Read Splunk ITSI glass table objects via itoa_interface |
| splunk.itsi.itsi_service | Manage Splunk ITSI Service objects via itoa_interface |
| splunk.itsi.itsi_service_info | Gather facts about Splunk ITSI Service objects via itoa_interface |
| splunk.itsi.itsi_update_episode_details | Update specific fields of Splunk ITSI episodes |
inventory.ini (Note the password should be managed by a Vault for a production environment.
[itsi]
splunk.itsi.com
[itsi:vars]
ansible_connection=httpapi
ansible_network_os=splunk.itsi.itsi_api_client
ansible_httpapi_use_ssl=true
ansible_httpapi_port=8089
ansible_httpapi_validate_certs=false
ansible_user=admin
ansible_httpapi_pass= {{ vault_pass }}
#ansible_httpapi_token= {{ valut_token }}
# Enable debug logging for httpapi plugin
ansible_persistent_log_messages=true
With Ansible Collections there are various ways to utilize them either by calling specific Content from the Collection, such as a module, by its Fully Qualified Collection Name (FQCN) as we'll show in this example or by defining a Collection Search Path as the examples below will display.
We recommend the FQCN method but the shorthand options listed below exist for convenience.
splunk_with_collections_fqcn_example.yml
---
# Create new aggregation policy (no policy_id = always creates new)
- name: Create new aggregation policy
splunk.itsi.itsi_aggregation_policy:
title: "Test Aggregation Policy (Ansible)"
description: "Test policy created by Ansible"
disabled: false
priority: 5
group_severity: "medium"
group_status: "new"
group_title: "%title%"
group_description: "%description%"
filter_criteria:
condition: "AND"
items: []
breaking_criteria:
condition: "AND"
items: []
state: present
register: create_result
# create_result.response._key contains the generated policy_id
# Update existing aggregation policy (policy_id required, title optional)
- name: Update aggregation policy settings
splunk.itsi.itsi_aggregation_policy:
policy_id: "{{ create_result.response._key }}"
group_severity: "high"
disabled: false
filter_criteria:
condition: "OR"
items:
[
{
"type": "clause",
"config":
{
"items":
[
{
"type": "notable_event_field",
"config":
{ "field": "severity", "operator": "<", "value": "6" },
},
],
"condition": "AND",
},
},
]
state: present
register: update_result
# update_result.diff shows fields that changed
This collection is tested against all currently maintained Ansible versions and with all currently supported (by Ansible on the target node) Python versions. You can find the list of maintained Ansible versions and their respective Python versions on docs.ansible.com.
See the changelog.
GNU General Public License v3.0 or later.
See LICENSE to see the full text.
| Product |
|---|
| 2.4 |
| 2.5 |
| 2.6 |
This collection requires the following collections for use:
| Name | Summary |
|---|