Anton Kosyakov e8a7835f9b [gitpod-cli] clean up
This PR introduces SupervisorClient to cache grpc connection and clients. It is in a prepartion to support inner container while running gp-run to provide access to all tasks.
2022-12-21 09:18:30 -03:00

81 lines
2.2 KiB
Go

// Copyright (c) 2022 Gitpod GmbH. All rights reserved.
// Licensed under the GNU Affero General Public License (AGPL).
// See License.AGPL.txt in the project root for license information.
package utils
import (
"bytes"
"context"
"encoding/json"
"fmt"
"net/http"
"net/url"
"os"
gitpod "github.com/gitpod-io/gitpod/gitpod-cli/pkg/gitpod"
"github.com/gitpod-io/gitpod/gitpod-cli/pkg/supervisor"
ide_metrics "github.com/gitpod-io/gitpod/ide-metrics-api"
"github.com/gitpod-io/gitpod/supervisor/api"
"github.com/go-errors/errors"
log "github.com/sirupsen/logrus"
)
func LogError(ctx context.Context, errToReport error, errorMessage string, supervisorClient *supervisor.SupervisorClient) {
log.WithError(errToReport).Error(errorMessage)
file, err := os.OpenFile(os.TempDir()+"/gitpod-cli-errors.log", os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0666)
if err == nil {
log.SetOutput(file)
} else {
log.SetLevel(log.FatalLevel)
}
if supervisorClient == nil {
return
}
wsInfo, err := supervisorClient.Info.WorkspaceInfo(ctx, &api.WorkspaceInfoRequest{})
if err != nil {
log.WithError(err).Error("failed to retrieve workspace info")
return
}
parsedUrl, err := url.Parse(wsInfo.GitpodHost)
if err != nil {
log.WithError(err).Error("cannot parse GitpodHost")
return
}
ideMetricsUrl := fmt.Sprintf("https://ide.%s/metrics-api/reportError", parsedUrl.Host)
reportErrorRequest := &ide_metrics.ReportErrorRequest{
ErrorStack: errors.New(errToReport).ErrorStack(),
Component: "gitpod-cli",
Version: gitpod.Version,
UserId: "", // todo: retrieve this from server
WorkspaceId: wsInfo.WorkspaceId,
InstanceId: wsInfo.InstanceId,
Properties: map[string]string{},
}
payload, err := json.Marshal(reportErrorRequest)
if err != nil {
log.WithError(err).Error("failed to marshal json while attempting to report error")
return
}
req, err := http.NewRequest("POST", ideMetricsUrl, bytes.NewBuffer(payload))
if err != nil {
log.WithError(err).Error("failed to init request for ide-metrics-api")
return
}
client := &http.Client{}
_, err = client.Do(req)
if err != nil {
log.WithError(err).Error("cannot report error to ide-metrics-api")
return
}
}