Dashboards & Visualizations

Selecting all non null fields from

nisha_kapoor
Path Finder

I am trying to display only those fields which contain a non null value. What is wrong with this command to achieve my purpose?

index="test" | fields -isnull(*)

It simply displays my data as a raw csv record, whereas what I want it to get all those fieldnames which are not "".

Tags (1)
0 Karma

DalJeanis
Legend

fields doesn't display anything, it just eliminates whatever isn't named.

This sequence will kill all variables that have only null values in all records...

| rename _time as temptime
| streamstats count as recno
| untable recno field value
| xyseries recno field value
| rename temptime as _time

You will have to use the rename before-and-after sequence on any internal fields starting with _ that you want to retain.

0 Karma

woodcock
Esteemed Legend

Do this:

index="test" | stats values(*) AS * BY _serial

I am pretty sure that you will be unhappy with the results because I am quite certain that what you asked is not what you are really trying to do.

nisha_kapoor
Path Finder

Thank you for your reply, what I want is a list of fields having at least one non-null value. In other words, I want to eliminate the fields having null values for all records.

0 Karma

niketn
Legend

" I want to eliminate the fields having null values for all records."

-- If you put a field in table and all the field values are null then the field will anyways be removed from being displayed. Please add some sample data with example of what is being displayed vs what is it that you want.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma
Get Updates on the Splunk Community!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...