Activity Feed
- Posted Re: Reverse-order a DNS at search time on Getting Data In. 03-06-2014 11:01 AM
- Posted Re: splunk6 custom HTML visualization not updating if form input changes on Dashboards & Visualizations. 12-19-2013 03:47 PM
- Posted Re: Non-integer percentiles? on Splunk Search. 06-24-2013 02:27 PM
- Posted Non-integer percentiles? on Splunk Search. 06-24-2013 12:46 PM
- Tagged Non-integer percentiles? on Splunk Search. 06-24-2013 12:46 PM
Topics I've Started
Subject | Karma | Author | Latest Post |
---|---|---|---|
0 |
03-06-2014
11:01 AM
I've not written it yet, but my plan to handle this is to write a dynamic lookup that does the equivalent of this (in perl):
$sortable_name=$hostname;
$sortable_name=~s{(\d+)}{sprintf "%09d", $1}g;
$sortable_name=join('.', reverse(split(/\./, $sortable_name)));
return $sortable_name;
So given a field with the hostname, it'd return a new field with a "sortable name." You could sort on that field, and then remove it from the results.
... View more
12-19-2013
03:47 PM
Are you aware that your "value": "| script... doesn't have a closing quotation mark? Could that be the problem, or is it just a copy/paste artifact?
... View more
06-24-2013
02:27 PM
You are right! I tried it and it didn't work, but I must have done something else wrong; it works fine for me now. Thanks!
... View more
06-24-2013
12:46 PM
I would like to find the 99.99th percentile of a value.
The perc (Y) function expects X to be an integer 1-99.
Any ideas?
... View more
- Tags:
- percentile