2022-09-05 03:06:08 -04:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-06-03 05:55:18 -04:00
|
|
|
package azure
|
|
|
|
|
|
|
|
import (
|
2022-06-10 07:18:30 -04:00
|
|
|
"context"
|
|
|
|
"errors"
|
2022-08-29 05:54:30 -04:00
|
|
|
"fmt"
|
2022-06-10 07:18:30 -04:00
|
|
|
|
2022-06-03 05:55:18 -04:00
|
|
|
"github.com/microsoft/ApplicationInsights-Go/appinsights"
|
|
|
|
)
|
|
|
|
|
2022-11-09 09:57:54 -05:00
|
|
|
// Logger implements CloudLogger interface for Azure to Disclose early boot
|
|
|
|
// logs into Azure's App Insights service.
|
2022-06-03 05:55:18 -04:00
|
|
|
type Logger struct {
|
|
|
|
client appinsights.TelemetryClient
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewLogger creates a new client to store information in Azure Application Insights
|
|
|
|
// https://github.com/Microsoft/ApplicationInsights-go
|
2022-06-10 07:18:30 -04:00
|
|
|
func NewLogger(ctx context.Context, metadata *Metadata) (*Logger, error) {
|
2022-08-29 05:54:30 -04:00
|
|
|
component, err := metadata.getAppInsights(ctx)
|
2022-06-10 07:18:30 -04:00
|
|
|
if err != nil {
|
2022-08-29 05:54:30 -04:00
|
|
|
return nil, fmt.Errorf("getting app insights: %w", err)
|
2022-06-10 07:18:30 -04:00
|
|
|
}
|
|
|
|
|
2022-08-29 05:54:30 -04:00
|
|
|
if component.Properties == nil || component.Properties.InstrumentationKey == nil {
|
2022-06-10 07:18:30 -04:00
|
|
|
return nil, errors.New("unable to get instrumentation key")
|
|
|
|
}
|
2022-08-01 06:32:28 -04:00
|
|
|
|
2022-08-29 05:54:30 -04:00
|
|
|
client := appinsights.NewTelemetryClient(*component.Properties.InstrumentationKey)
|
|
|
|
|
|
|
|
self, err := metadata.Self(ctx)
|
2022-08-01 06:32:28 -04:00
|
|
|
if err != nil {
|
2022-08-29 05:54:30 -04:00
|
|
|
return nil, fmt.Errorf("getting self: %w", err)
|
2022-08-01 06:32:28 -04:00
|
|
|
}
|
2022-08-29 05:54:30 -04:00
|
|
|
client.Context().CommonProperties["instance-name"] = self.Name
|
2022-06-10 07:18:30 -04:00
|
|
|
|
2022-08-29 05:54:30 -04:00
|
|
|
return &Logger{client: client}, nil
|
2022-06-03 05:55:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Disclose stores log information in Azure Application Insights!
|
|
|
|
// Do **NOT** log sensitive information!
|
|
|
|
func (l *Logger) Disclose(msg string) {
|
|
|
|
l.client.Track(appinsights.NewTraceTelemetry(msg, appinsights.Information))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close blocks until all information are written to cloud API.
|
|
|
|
func (l *Logger) Close() error {
|
|
|
|
<-l.client.Channel().Close()
|
|
|
|
return nil
|
|
|
|
}
|