DataSketches HLL Sketch module

    1. "type" : "HLLSketchBuild",
    2. "fieldName" : <metric name>,
    3. "lgK" : <size and accuracy parameter>,
    4. "tgtHllType" : <target HLL type>,
    5. "round": <false | true>

    Post Aggregators

    Estimate

    1. {
    2. "type" : "HLLSketchEstimate",
    3. "name": <output name>,
    4. "round" : <if true, round the estimate. Default is false>
    5. }

    Estimate with bounds

    Union

    1. "type" : "HLLSketchUnion",
    2. "name": <output name>,
    3. "fields" : <array of post aggregators that return HLL sketches>,
    4. "lgK": <log2 of K for the target sketch>,
    5. "tgtHllType" : <target HLL type>

    Sketch to string