Filter your data by tags in Splunk RUM π
Filtering your data by tags helps you refine the scope of your search results and glean meaningful insights. In Splunk RUM, you can filter both indexed and unindexed tags using two operators, = and !=.
Understand the results of your search π
The following examples show how search results differ depending on the combination of filters you select.
Apply multiple filters under the same operator π
You can apply multiple filters under the same operator. For example, the following image shows how to select multiple browser types. The results from this search include metrics, events, or sessions originating from Chrome, Electron, Firefox, or Safari.
Apply separate filters π
Suppose you want to monitor the checkout latency of your site on Chrome. If you apply the following filters, the results of the search include metrics, events, or sessions from the custom event Checkout that occurred on a Chrome browser.
Search for global attributes π
Global attributes are key-value pairs added to all reported data. Global attributes are useful for reporting app or user-specific values as tags. You can create global attributes either at the time of library initialization, or afterwards. Span attributes are custom attributes that you can add to specific spans. Custom events capture logic for a specific workflow you define, for example a checkout workflow. For more, see Create custom events.
To search for global attributes, type the tag and value into the filter bar like in the following image:
How to set global attributes π
For instructions on how to set global attributes, see the instrumentation documentation for:
Global attributes examples π
Suppose you want to identify users, you can add global attributes enduser.id
and
enduser.role
. You might also consider adding environment
and app.version
.
Span attributes example π
Suppose you have have an autofill function in your code, and youβd like to know whether itβs turned on or off. You can use one of the following settings as a span attribute:
{'autocomplete': 'true'}
{'autocomplete': 'false'}
{'autocomplete_status': 'on'}
{'autocomplete_status': 'off'}
Search for unindexed tags π
To search for unindexed tags, type the tag and value into the filter bar. This following animation shows an example from the fictitious Buttercup Industries on how to filter by an unindexed tag called ButtercupSession.
After entering a value in the filter, a Session Search page appears. The page contains a list of sessions that match the filter criteria.
Undefined tag values π
Sometimes, you might see a message in the UI that says Tag value undefined
. This might happen because some data was missing when it was ingested by Splunk RUM.
Try these steps to troubleshoot:
If the environment tag is undefined, try setting it in the instrumentation by following the steps here: Instrument mobile and web applications for Splunk RUM.
If the tag is related to a geo location that is calculated based off of an IP address, this data could be missing if the user is on VPN.
Search for indexed tags π
Splunk RUM provides the ability to filter on the following tags out of the box:
Splunk RUM for Browser |
Splunk RUM for Mobile |
---|---|
|
|
Why are some tag values undefined? π
You might see the following message in the Splunk RUM Tag Spotlight page: Tag value undefined.
This means that there were no tag values associated with the span. There are many reasons why a tag value might be undefined. Here are two examples:
If a URL doesnβt load because of a poor network connection, the HTTPS status codes might be unavailable. This situation results in the message
Tag value undefined.
For some errors, the error type, message, or stack trace could be unavailable. In this scenario, you might see the following message:
JS Errors without type, message or stack trace.
This means that the spans were missing information (required to compute the ErrorId) when they were ingested into Splunk RUM.
Examples on how to filter by tags π
The following examples outline how you can filter tags in Splunk RUM.
Search by status code π
Suppose you want to filter by status code, excluding 200s. You can apply a filter like in the image below. Using the wildcard *, you can search for all status codes starting with 2 and then using the != operator you can filter out the success status code.
Similarly, if you want to search for all 400 error responses, but not 404 you can apply filters like these:
Search for a specific browser version π
This example shows how to search for all data from a browser version 99.0 excluding one release.
Include all results or exclude all results π
This search returns results for all browser versions.
If you want to search for results with no browser version you can apply the filter BrowserVersion != *
.
This page was last updated on Jul 31, 2024.