- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
nathanluke86
Communicator
10-21-2019
12:58 AM
I have some simple SPL that displays a single value and would like to change the color based on the field value.
index = windows* Status=OK source=computer| dedup source |table host Status
Thanks,
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
to4kawa
Ultra Champion
10-21-2019
02:45 AM
index=windows* Status=* source=computer
| dedup source
| table host Status
| eval color=case(Status=="OK","green",Status=="Error","red")
| eval type="desktop"
| rename host as from
| fields from, type, color
hi, Network Diagram Viz is interesting.
I used it for the first time.
How about this search with Network Diagram Viz?
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
to4kawa
Ultra Champion
10-21-2019
02:45 AM
index=windows* Status=* source=computer
| dedup source
| table host Status
| eval color=case(Status=="OK","green",Status=="Error","red")
| eval type="desktop"
| rename host as from
| fields from, type, color
hi, Network Diagram Viz is interesting.
I used it for the first time.
How about this search with Network Diagram Viz?
