UNPKG

@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) 503 B
import { Logger } from '@flxbl-io/sfp-logger'; import { NativeMetricSender } from '../NativeMetricSender'; export declare class SplunkMetricSender extends NativeMetricSender { constructor(logger: Logger); private instance; 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; }