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

A single time bucket in the overall scenario's time series metrics.

- `:offset_ms` is the millisecond offset from the start of the scenario's run.
- `:active_users` is the number of concurrently running scenario users that were running within this bucket .
- `:node_count` indicates how many nodes contributed data to this bucket. On the individual node breakdowns this will be `nil`.

# `t`

```elixir
@type t() :: %LiveLoad.Result.Bucket{
  active_users: non_neg_integer(),
  counters: %{required(String.t()) =&gt; LiveLoad.Result.DimensionedCounter.t()},
  histograms: %{
    required(String.t()) =&gt; LiveLoad.Result.DimensionedHistogram.t()
  },
  node_count: pos_integer() | nil,
  offset_ms: non_neg_integer()
}
```

