# `LiveLoad.Result.DimensionedCounter`
[🔗](https://github.com/probably-not/live-load/blob/v0.1.1/lib/live_load/result.ex#L77)

A counter with both a total aggregated value and an optional dimensional breakdown.

- `:aggregate` is the total count across all dimensions.
- `:by` maps dimension values to their individual counts.

# `t`

```elixir
@type t() :: %LiveLoad.Result.DimensionedCounter{
  aggregate: non_neg_integer(),
  by: %{required(String.t()) =&gt; non_neg_integer()}
}
```

