Table of Contents

Interface IInsightApplicationHealthByTime

Namespace
Meraki.Api.Interfaces.Products.Insight
Assembly
Meraki.Api.dll
public interface IInsightApplicationHealthByTime

Methods

GetNetworkInsightApplicationHealthByTimeAsync(string, string, string, string, double?, int?, CancellationToken)

Get application health by time

[Get("/networks/{networkId}/insight/applications/{applicationId}/healthByTime")]
Task<List<HealthByTime>> GetNetworkInsightApplicationHealthByTimeAsync(string networkId, string applicationId, string t0 = null, string t1 = null, double? timespan = null, int? resolution = null, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

applicationId string

The application id

t0 string

The beginning of the timespan for the data. The maximum lookback period is 7 days from today.

t1 string

The end of the timespan for the data. t1 can be a maximum of 7 days after t0.

timespan double?

The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 7 days. The default is 2 hours.

resolution int?

The time resolution in seconds for returned data. The valid resolutions are: 60, 300, 3600, 86400. The default is 300.

cancellationToken CancellationToken

Returns

Task<List<HealthByTime>>

Exceptions

ApiException

Thrown when fails to make API call