layout: doc_page

TopNMetricSpec

The topN metric spec specifies how topN values should be sorted.

Numeric TopNMetricSpec

The simplest metric specification is a String value indicating the metric to sort topN results by. They are included in a topN query with:

"metric": <metric_value_string>

The metric field can also be given as a JSON object. The grammar for dimension values sorted by numeric value is shown below:

"metric": {
    "type": "numeric",
    "metric": "<metric_value>"
}
propertydescriptionrequired?
typethis indicates a numeric sortyes
metricthe actual metric field in which results will be sorted byyes

Lexicographic TopNMetricSpec

The grammar for dimension values sorted lexicographically is as follows:

"metric": {
    "type": "lexicographic",
    "previousStop": "<previousStop_value>"
}
propertydescriptionrequired?
typethis indicates a lexicographic sortyes
previousStopthe starting point of the lexicographic sort. For example, if a previousStop value is ‘b’, all values before ‘b’ are discarded. This field can be used to paginate through all the dimension values.no

AlphaNumeric TopNMetricSpec

Sort dimension values in alpha-numeric order, i.e treating numbers differently from other characters in sorting the values. See http://www.davekoelle.com/alphanum.html for details on how the algorithm works.

"metric": {
    "type": "alphaNumeric",
    "previousStop": "<previousStop_value>"
}
propertydescriptionrequired?
typethis indicates an alpha-numeric sortyes
previousStopthe starting point of the alpha-numeric sort. For example, if a previousStop value is ‘b’, all values before ‘b’ are discarded. This field can be used to paginate through all the dimension values.no

Inverted TopNMetricSpec

Sort dimension values in inverted order, i.e inverts the order of the delegate metric spec. It can be used to sort the values in descending order.

"metric": {
    "type": "inverted",
    "metric": <delegate_top_n_metric_spec>
}
propertydescriptionrequired?
typethis indicates an inverted sortyes
metricthe delegate metric spec.yes