Splunk Search

Updating a value in a lookup

joe06031990
Communicator

Hello,

I have a lookup called top sites with the bellow:

 

Name

Ip address

test1

10.10.10.10

test2

10.10.10.11

Test3

10.10.10.12

Test4

10.10.10.11

Test5

10.10.10.11

 

I am trying to update test3 IP address with the bellow:

 

| inputlookup topsites.csv | append [
|eval Name=Test3
|eval Ip address="9.9.9.9"] [|stats count by Name,Ip address]
| outputlookup
createinapp=true
topsites.csv

 

However it just adds another entry instead pf replacing the IP address value, what am I missing?

 

Thanks

Labels (4)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

From your original post, it looks like the field is called 'ip address' - if this is not the case, then use the real field name instead of 'ip address'

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

Try something like this:

| inputlookup topsites.csv
| eval 'Ip address'=if(Name="Test3","9.9.9.9",'Ip address')
| outputlookup
createinapp=true
topsites.csv

joe06031990
Communicator

Good Morning,

 

Thanks for your reply,

 

when I run the search it adds another column with the updated value called 'Ip address' instead of updating the existing field value, is there a way around this?

 

Thanks

 

Joe

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

From your original post, it looks like the field is called 'ip address' - if this is not the case, then use the real field name instead of 'ip address'

Get Updates on the Splunk Community!

Splunk Lantern | Spotlight on Security: Adoption Motions, War Stories, and More

Splunk Lantern is a customer success center that provides advice from Splunk experts on valuable data ...

Splunk Cloud | Empowering Splunk Administrators with Admin Config Service (ACS)

Greetings, Splunk Cloud Admins and Splunk enthusiasts! The Admin Configuration Service (ACS) team is excited ...

Tech Talk | One Log to Rule Them All

One log to rule them all: how you can centralize your troubleshooting with Splunk logs We know how important ...