UNPKG

aem-dev-mcp-server

Version:

AEM MCP server providing connectivity tools for Adobe Experience Manager® instances

22 lines • 1.1 kB
export interface HTMLPatternMatcher { readonly pattern: RegExp; readonly transform: (match: RegExpMatchArray) => number; } export declare const createHTMLMatcher: (pattern: RegExp, transform: (match: RegExpMatchArray) => number) => HTMLPatternMatcher; export declare const parseCommaSeparatedNumber: (value: string) => number; export declare const HTML_PATTERNS: { readonly heapMemory: HTMLPatternMatcher; readonly heapMemoryMax: HTMLPatternMatcher; readonly nonHeapMemory: HTMLPatternMatcher; readonly nonHeapMemoryMax: HTMLPatternMatcher; readonly liveThreads: HTMLPatternMatcher; readonly aliveThreads: HTMLPatternMatcher; readonly daemonThreads: HTMLPatternMatcher; readonly interruptedThreads: HTMLPatternMatcher; readonly averageResponseTime: HTMLPatternMatcher; readonly activeRequests: HTMLPatternMatcher; readonly queuedRequests: HTMLPatternMatcher; readonly errorRate: HTMLPatternMatcher; }; export declare const extractFromHTML: (html: string, matcher: HTMLPatternMatcher) => number; //# sourceMappingURL=html-patterns.schema.d.ts.map