Retrieve metrics

Retrieves metrics related to your Algolia infrastructure, aggregated over a selected time window.

Access to this API is available as part of the Premium or Elevate plans. You must authenticate requests with the x-algolia-application-id and x-algolia-api-key headers (using the Monitoring API key).

Usage

1
2
3
4
5
6
7
8
9
10
11
12
using Algolia.Search.Clients;
using Algolia.Search.Http;
using Algolia.Search.Models.Monitoring;

var client = new MonitoringClient(
  new MonitoringConfig("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY")
);

var response = await client.GetMetricsAsync(
  Enum.Parse<Metric>("AvgBuildTime"),
  Enum.Parse<Period>("Minute")
);
Did you find this page helpful?