UNPKG

432 BTypeScriptView Raw
1import { AutomationClient, AutomationEventListenerSupport, EventIncoming } from "@atomist/automation-client";
2/**
3 * Automation listener that reports goal round trip metrics to StatsD.
4 */
5export declare class SdmGoalMetricReportingAutomationEventListener extends AutomationEventListenerSupport {
6 private statsd;
7 startupSuccessful(client: AutomationClient): Promise<void>;
8 eventIncoming(payload: EventIncoming): void;
9}