Table of Contents

Interface IStatsClient

Namespace
Auth0.ManagementApi.Clients
Assembly
Auth0.ManagementApi.dll
public interface IStatsClient

Methods

GetActiveUsersAsync(CancellationToken)

Gets the active users count (logged in during the last 30 days).

Task<long> GetActiveUsersAsync(CancellationToken cancellationToken = default)

Parameters

cancellationToken CancellationToken

The cancellation token to cancel operation.

Returns

Task<long>

The number of users that have logged in during the last 30 days.

GetDailyStatsAsync(DateTime, DateTime, CancellationToken)

Gets the daily stats for a particular period.

Task<IList<DailyStatistics>> GetDailyStatsAsync(DateTime from, DateTime to, CancellationToken cancellationToken = default)

Parameters

from DateTime

The first day of the period (inclusive).

to DateTime

The last day of the period (inclusive).

cancellationToken CancellationToken

The cancellation token to cancel operation.

Returns

Task<IList<DailyStatistics>>

A list of DailyStatistics containing the statistics for each day in the period.