Thanks For Downloading!Review the documentation below and follow any custom installation steps. If no install steps are listed, most Splunk Apps and Add-ons can be installed as follows: Windows: Decompress the downloaded file using a tool like 7-Zip and place the resulting folder into Unix/Linux: Decompress the downloaded file using a tool like DescriptionQuantify is a reworking of the 'rangemap' command, allowing for the dynamic creation of categories or 'ranges' in which to group data. Whereas 'rangemap' requires us to know our categories and ranges, beforehand, quantify will generate categories based on the data. Quantify adds a 'range' field to each event that denotes which categories the event falls into. The 'range' field is a space-delimited list that can be piped into makemv to create a multivalued field (i.e. | makemv range) when needed. ** TODO: Floating point support will be added to a future release. Syntax: 'bins' - how many categories to create. NOTE: 'Quantify' attempts to split all categories, equally; however, if category sizes cannot be divided, equally, 'Quantify' will stretch the highest-value category. Examples: index=_internal | head 100 | streamstats count AS c | eventstats max(c) AS max_c min(c) AS min_c | quantify overlap=low label=range minfield=min_c maxfield=max_c bins=4 field=c | stats count by range index=_internal | head 100 | streamstats count AS c | quantify label=low max=50 min=1 bins=2 field=c | stats count by range Versions and Release Notes
Version 1.4 (current version - updated Jul 11, 2012)
release notes:
README updated -- label option was incorrectly noted in the syntax.
Version 1.1
(updated Jul 09, 2012)
release notes:
appIcon.png added to package, and version incremented to update older installs.
Version 1.0
(updated Jul 09, 2012)
|