UNPKG

okta-mcp-server

Version:

Model Context Protocol (MCP) server for Okta API operations with support for bulk operations and caching

19 lines 540 B
/** * Circuit Breaker Monitoring Types * * Type definitions for the monitoring and metrics system */ import { CircuitState } from './types.js'; // Re-export CircuitState for external use export { CircuitState }; /** * Metric types for monitoring */ export var MetricType; (function (MetricType) { MetricType["COUNTER"] = "counter"; MetricType["GAUGE"] = "gauge"; MetricType["HISTOGRAM"] = "histogram"; MetricType["SUMMARY"] = "summary"; })(MetricType || (MetricType = {})); //# sourceMappingURL=monitoring-types.js.map