dcount_hll()

Calculates the dcount from hll results (that were generated by hll or hll_merge).

Read about the underlying algorithm (HyperLogLog) and estimation accuracy.

Syntax

dcount_hll(Expr)

Arguments

Returns

The distinct count of each value in Expr

Examples

StormEvents
| summarize hllRes = hll(DamageProperty) by bin(StartTime,10m)
| summarize hllMerged = hll_merge(hllRes)
| project dcount_hll(hllMerged)
dcount_hll_hllMerged
315