-
Notifications
You must be signed in to change notification settings - Fork 241
/
api.go
69 lines (61 loc) · 2.12 KB
/
api.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package aitelemetry
import (
"sync"
"github.com/Azure/azure-container-networking/common"
"github.com/Microsoft/ApplicationInsights-Go/appinsights"
)
// Application trace/log structure
type Report struct {
Message string
Context string
CustomDimensions map[string]string
}
// Application event structure
type Event struct {
EventName string
ResourceID string
Properties map[string]string
}
// Application metrics structure
type Metric struct {
Name string
Value float64
CustomDimensions map[string]string
}
type AIConfig struct {
AppName string
AppVersion string
BatchSize int
BatchInterval int
DisableMetadataRefreshThread bool
RefreshTimeout int
GetEnvRetryCount int
GetEnvRetryWaitTimeInSecs int
DebugMode bool
}
// TelmetryHandle holds appinsight handles and metadata
type telemetryHandle struct {
telemetryConfig *appinsights.TelemetryConfiguration
appName string
appVersion string
metadata common.Metadata
diagListener appinsights.DiagnosticsMessageListener
client appinsights.TelemetryClient
disableMetadataRefreshThread bool
refreshTimeout int
rwmutex sync.RWMutex
}
// Telemetry Interface to send metrics/Logs to appinsights
type TelemetryHandle interface {
// TrackLog function sends report (trace) to appinsights resource. It overrides few of the existing columns with app information
// and for rest it uses custom dimesion
TrackLog(report Report)
// TrackMetric function sends metric to appinsights resource. It overrides few of the existing columns with app information
// and for rest it uses custom dimesion
TrackMetric(metric Metric)
// TrackEvent function sends events to appinsights resource. It overrides a few of the existing columns
// with app information.
TrackEvent(aiEvent Event)
// Close - should be called for each NewAITelemetry call. Will release resources acquired
Close(timeout int)
}