I am doing a substr and want to see that in a table, however it just gives no results
baseSearch | eval id = substr(detail.id,2,7)| table id
I would expect to see a table of id's that have been substringed, however I get no results found?
Try with quotes:
baseSearch | eval id = substr("detail.id",2,7)| table id
Try with quotes:
baseSearch | eval id = substr("detail.id",2,7)| table id
I just figured this out and went to add my own answer!
single quotes work as well
Hi,
I have DB field which has value like -
DB = arn:aws:rds:eu-west-1:354706231380:db:we1abcdeslfwtya
I want to print we1abcdeslfwtya
And below is my query -
| rename results{}.total_amortized_cost as Total_amor , results{}.resource_identifier as DB | eval n=substr(DB,15) | table DB , n
However, I get the n column in table as blank. I dont know whats wrong happening here. I tried with double quotes ( " ) and single quotes ( ' ) both for DB and it doesn't work. Like substr("DB",15)
Can someone help please.
Thanks in advance
Regards,
Sumeet
So will dollar-signs.