Splunk metrics
StackState Self-hosted v4.5.x
This page describes StackState v4.5.x. The StackState 4.5 version range is End of Life (EOL) and no longer supported. We encourage customers still running the 4.5 version range to upgrade to a more recent release.
Overview
The StackState Splunk integration collects metrics from Splunk by executing Splunk saved searches that have been specified in the StackState Agent V1 Splunk metrics check configuration. In order to receive Splunk metrics data in StackState, you will therefore need to add configuration to both Splunk and StackState Agent V1.
In Splunk, there should be at least one saved search that generates the metrics data you want to retrieve. Each saved search can retrieve one metric.
In StackState Agent V1, a Splunk metrics check should be configured to connect to your Splunk instance and execute the relevant Splunk saved searches.
The Splunk metrics check on StackState Agent V1 will execute all configured Splunk saved searches periodically. Data will be requested from the last received metric timestamp up until now.
Splunk is a StackState core integration.
Splunk saved search
Fields used
StackState Agent V1 executes the Splunk saved searches configured in the Splunk metrics Agent check configuration file and pushes retrieved data to StackState as a telemetry stream. The following fields from the results of a saved search are sent to StackState:
Field | Type | Required? | Description |
---|---|---|---|
_time | long | - | Data collection timestamp, millis since epoch. |
metric | string | - | The name of the metric. Taken from the configured |
value | numeric | - | The value of the metric. Taken from the configured |
Example Splunk query
The example Splunk saved search above would result in the following metric data in StackState:
Field | Data |
---|---|
_time | Splunk |
metric | Splunk |
value | Splunk |
Agent check
Configure the Splunk metrics check
To enable the Splunk metrics integration and begin collecting metrics data from your Splunk instance, the Splunk metrics check must be configured on StackState Agent V1. The check configuration provides all details required for the Agent to connect to your Splunk instance and execute a Splunk saved search.
Example Splunk metrics Agent check configuration file: splunk_metric/conf.yaml.example (github.com)
To configure the Splunk metrics Agent check:
Edit the StackState Agent V1 configuration file
/etc/sts-agent/conf.d/splunk_metric.yaml
.Under instances, add details of your Splunk instance:
url - The URL of your Splunk instance.
authentication - How the Agent should authenticate with your Splunk instance. Choose either token-based (recommended) or basic authentication. For details, see authentication configuration details.
tags - Optional. Can be used to apply specific tags to all reported metrics in StackState.
Under saved_searches, add details of each Splunk saved search that the check should execute. Each saved search can retrieve one metric:
name - The name of the Splunk saved search to execute.
metric_name_field - The field in the Splunk results that will contain the metric name. Default
"metric"
.metric_value_field - The field in the Splunk results that will contain numerical data. Default
"value"
.match: - Regex used for selecting Splunk saved search queries. Default
metrics.*
.app - The Splunk app in which the saved searches are located. Default
"search"
.request_timeout_seconds - Default
10
search_max_retry_count - Default
5
search_seconds_between_retries - Default
1
batch_size - Default
1000
initial_history_time_seconds - Default
0
max_restart_history_seconds - Default
86400
max_query_chunk_seconds - Default
3600
unique_key_fields - The fields to use to uniquely identify a record. Default
_bkt
and_cd
.parameters - Used in the Splunk API request. The default parameters provided make sure the Splunk saved search query refreshes. Default
force_dispatch: true
anddispatch.now: true
.
More advanced options can be found in the example configuration (github.com).
Save the configuration file.
Restart StackState Agent V1 to apply the configuration changes.
Once the Agent has restarted, wait for the Agent to collect data and send it to StackState.
Metrics retrieved from splunk are available in StackState as a metrics telemetry stream in the
stackstate-metrics
data source. This can be mapped to associated components.
Uniquely identify a record
To prevent sending duplicate metrics over multiple check runs, received saved search records must be uniquely identified for comparison. By default, a record is identified by the Splunk default fields _bkt
and _cd
. This behavior can be customized for each saved search by specifying unique_key_fields
in the Splunk metrics Agent check configuration. Note that the specified unique_key_fields
fields are mandatory fields for each record returned by the Splunk saved search.
If it is not possible to uniquely identify a record by a combination of specific fields, the whole record can be used by setting unique_key_fields: []
(an empty list).
Disable the Agent check
To disable the Splunk metrics Agent check:
Remove or rename the Agent integration configuration file, for example:
Restart the StackState Agent to apply the configuration changes.
Splunk metrics in StackState
Metrics retrieved from splunk are available in StackState as a metrics telemetry stream in the stackstate-metrics
data source. This can be mapped to associated components.
See also
Last updated