Version: 0.10.00.10.10.10.20.10.30.12.00.12.10.12.20.12.30.12.40.12.50.15.00.15.1-a0.15.1-b0.15.1-c0.15.1-d0.15.10.15.20.15.30.15.40.15.50.15.60.15.70.15.80.15.100.15.110.15.120.15.130.15.140.15.150.15.160.15.170.15.180.15.190.16.00.17.00.17.10.17.20.18.00.19.00.20.00.20.10.21.00.22.01.0.01.0.11.0.21.0.31.0.41.0.51.0.61.0.71.0.81.1.0-beta.01.1.01.2.01.3.01.3.11.4.01.4.11.4.21.5.01.6.01.7.01.7.11.7.21.7.31.7.41.7.51.7.61.8.0-beta.01.8.0-beta.11.8.01.8.11.8.21.8.31.8.41.8.51.8.61.8.71.8.81.8.91.8.102.0.0-beta.200707.12.0.0-beta.200713.12.0.0-beta.200714.12.0.0-beta.200828.12.0.0-beta.200831.12.0.0-beta.200831.22.0.0-beta.201004.02.0.0-beta.201103.02.0.02.1.0-beta.02.1.0-beta.12.1.02.1.12.1.2-beta.02.1.22.1.32.1.42.1.52.1.62.1.72.1.82.1.92.2.02.2.12.2.22.3.02.3.12.3.22.3.32.3.42.3.52.3.62.4.02.4.12.4.22.5.02.5.12.6.02.7.02.7.12.7.22.7.32.8.02.9.02.9.12.9.22.9.32.9.42.9.52.9.63.0.0-beta.03.0.0-beta.13.0.0-beta.23.0.0-beta.33.0.0-beta.43.0.0-beta.53.0.0-beta.63.0.0-beta.73.0.0-beta.83.0.0-beta.93.0.0-beta.103.0.0-beta.113.0.0-beta.123.0.03.0.13.1.03.2.03.2.13.2.23.3.03.4.03.5.0
import { Telemetry } from "./telemetry";
import { SeverityLevel } from "../../generated";
/**
* Telemetry about the exception thrown by the application
*/
export interface ExceptionTelemetry extends Telemetry {
* Exception thrown
exception: Error;
* Metrics associated with this exception, displayed in Metrics Explorer on the portal. Defaults to empty
measurements?: {
[key: string]: number;
};
* Exception severity level
severity?: SeverityLevel;
}