Skip to main content
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

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

// Call the API
var response = await client.GetMetricsAsync(
  Enum.Parse<Metric>("AvgBuildTime"),
  Enum.Parse<Period>("Minute")
);
// >LOG

See the full API reference

For more details about input parameters and response fields.
I