Add Microsoft Application Insights output plugin (#4010)

This commit is contained in:
Karol Zadora-Przylecki
2018-05-15 16:05:59 -07:00
committed by Daniel Nelson
parent 99033241c4
commit 863af9d1d4
10 changed files with 971 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package application_insights
import (
"github.com/Microsoft/ApplicationInsights-Go/appinsights"
)
type diagnosticsMessageSubscriber struct {
}
func (ms diagnosticsMessageSubscriber) Subscribe(handler appinsights.DiagnosticsMessageHandler) appinsights.DiagnosticsMessageListener {
return appinsights.NewDiagnosticsMessageListener(handler)
}