i am new to splunk and i am trying thing out on my own. This might be an elementary question to most of you , but please be patient in trying to help me out.
| inputlookup "Wsp.csv"
| eval Outage = if(PublisherStatus = "Active", "1","0")
| eval _time=strptime(_time, "%Y-%m-%dT%H:%M:%S")
| eval DayOfWeek=strftime(_time, "%A")
I am trying to add Outage and DayOfWeek to be displayed in the result.
i tried using field Outage and dayofweek but it doesn't display the rest of fields present in Wsp.csv
is it possible to display Wsp + Outage + dayofweek in the search result ? how ?