microsoft / ApplicationInsights-node.js

Microsoft Application Insights SDK for Node.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Severitylevel does not work

rassiju06 opened this issue · comments

this doesnt work anymore, how do you pull severitylevel? thanks.

import { SeverityLevel } from 'applicationinsights/out/Declarations/Contracts/Generated/SeverityLevel';

@rassiju06 Looks like the SeverityLevel type is available under applicationinsights/out/declarations/generated/models now, however the type is the same as KnownSeverityLevel which is more easily accessed as import { KnownSeverityLevel } from 'applicationinsights';

@rassiju06 Looks like the SeverityLevel type is available under applicationinsights/out/declarations/generated/models now, however the type is the same as KnownSeverityLevel which is more easily accessed as import { KnownSeverityLevel } from 'applicationinsights';

thanks