applicationinsights
Version:
Microsoft Application Insights module for Node.js
16 lines (15 loc) • 842 B
TypeScript
import { ApplicationInsightsClientContext } from "./applicationInsightsClientContext";
import { ApplicationInsightsClientOptionalParams, TelemetryItem, TrackOptionalParams, TrackOperationResponse } from "./models";
export declare class ApplicationInsightsClient extends ApplicationInsightsClientContext {
/**
* Initializes a new instance of the ApplicationInsightsClient class.
* @param options The parameter options
*/
constructor(options?: ApplicationInsightsClientOptionalParams);
/**
* This operation sends a sequence of telemetry events that will be monitored by Azure Monitor.
* @param body The list of telemetry events to track.
* @param options The options parameters.
*/
track(body: TelemetryItem[], options?: TrackOptionalParams): Promise<TrackOperationResponse>;
}