Splunk Search

splunk query with substring not working

super_edition
Path Finder

Hello Everyone,

I have written the splunk query to remove last 2 character from the string:

processingDuration = 102ms  as 102 for the following log:

 

 

{
	"timestamp": "2029-02-29 07:32:54.734",
	"level": "INFO",
	"thread": "54dd544ff",
	"logger": "my.logger",
	"message": {
		"logTimeStamp": "2029-02-29T07:32:54.734494726Z",
		"logType": "RESP",
		"statusCode": 200,
		"processingDuration": "102ms",
		"headers": {
			"Content-Type": [
				"application/json"
			]
		},
		"tracers": {
			"correlation-id": [
				"hfkjhwkj98342"
			],
			"request-id": [
				"53456345"
			],
			"service-trace-id": [
				"34234623456"
			]
		}
	},
	"context": "hello-service"
}

 

 

my splunk query:

 

 

index=my_index    
| spath logger | search logger="my.logger" 
| spath "message.logType" | search "message.logType"=RESP 
| spath "message.tracers.correlation-id{}" | search "message.tracers.correlation-id{}"="hfkjhwkj98342" 
| eval myprocessTime = substr("message.processingDuration", 1, len("message.processingDuration")-2)
| table "message.tracers.correlation-id{}" myprocessTime

 

 

the above query considers "message.processingDuration" as string itself and removes last 2 characters out of it.

super_edition_1-1723117654225.png

I tried without double quotes also, it returned empty:

 

 

substr(message.processingDuration, 1, len(message.processingDuration)-2)

 

 

 Appreciate your help on this.

Thanks in advance.

Labels (1)
Tags (2)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

A string in single quotes is treated by Splunk as a field name.

substr('message.processingDuration', 1, len('message.processingDuration')-2)
---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

A string in single quotes is treated by Splunk as a field name.

substr('message.processingDuration', 1, len('message.processingDuration')-2)
---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

Accelerating Observability as Code with the Splunk AI Assistant

We’ve seen in previous posts what Observability as Code (OaC) is and how it’s now essential for managing ...

Integrating Splunk Search API and Quarto to Create Reproducible Investigation ...

 Splunk is More Than Just the Web Console For Digital Forensics and Incident Response (DFIR) practitioners, ...

Congratulations to the 2025-2026 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...