@flxbl-io/sfp
Version:
sfp is a CLI tool to help you manage your Salesforce projects in an artifact centric model
14 lines (13 loc) • 523 B
TypeScript
import { Logger } from '@flxbl-io/sfp-logger';
import { NativeMetricSender } from '../NativeMetricSender';
export declare class DataDogMetricsSender extends NativeMetricSender {
constructor(logger: Logger);
private nativeDataDogMetricsLogger;
initialize(apiHost: string, apiKey: string): void;
sendGaugeMetric(metric: string, value: number, tags: string[] | {
[key: string]: string;
}): void;
sendCountMetric(metric: string, tags: string[] | {
[key: string]: string;
}): void;
}