diff --git a/applicationinsights/applicationinsights.d.ts b/applicationinsights/applicationinsights.d.ts index 2f8c53e0f1..17ca4a479f 100644 --- a/applicationinsights/applicationinsights.d.ts +++ b/applicationinsights/applicationinsights.d.ts @@ -1,4 +1,4 @@ -// Type definitions for Application Insights v0.15.8 +// Type definitions for Application Insights v0.15.12 // Project: https://github.com/Microsoft/ApplicationInsights-node.js // Definitions by: Scott Southwood // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped @@ -338,7 +338,9 @@ interface Client { * @param max the max sample for this set * @param stdDev the standard deviation of the set */ - trackMetric(name: string, value: number, count?:number, min?: number, max?: number, stdDev?: number): void; + trackMetric(name: string, value: number, count?:number, min?: number, max?: number, stdDev?: number, properties?: { + [key: string]: string; + }): void; trackRequest(request: any /* http.ServerRequest */, response: any /* http.ServerResponse */, properties?: { [key: string]: string; }): void;