Closes #1097
This commit is contained in:
Xiao 2019-10-30 14:28:15 -07:00 коммит произвёл Mark Wolff
Родитель b3d82fe45c
Коммит e40a8c4f20
1 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -126,6 +126,18 @@ Parameter | Type | Description
`duration?` | number | **Optional**<br>Elapsed time of request & reply
`method?` | string | **Optional**<br>Represents request verb (GET, POST, etc.)
### trackEvent
```ts
applicationInsights.trackEvent(event: IEventTelemetry, customProperties?: { [key: string]: any })
```
The `IEventTelemetry` interface is below:
Parameter | Type | Description
---|---|---
`name` | string | **Required**<br>An event name string.
### flush
```ts