telemetry: ensure events are not dropped
- Move chan sync code immediately after operation - Fix git hashing when not in a git repo Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
parent
c2bf9a528c
commit
c17ce97381
@ -19,15 +19,18 @@ func TrackCommand(ctx context.Context, cmd *cobra.Command, props ...*telemetry.P
|
|||||||
Name: "command",
|
Name: "command",
|
||||||
Value: commandName(cmd),
|
Value: commandName(cmd),
|
||||||
},
|
},
|
||||||
{
|
|
||||||
// Hash the repository URL for privacy
|
|
||||||
Name: "git_repository_hash",
|
|
||||||
Value: hash(gitRepoURL(".")),
|
|
||||||
},
|
|
||||||
}, props...)
|
}, props...)
|
||||||
|
|
||||||
projectDir, found := pkg.GetCueModParent()
|
if repo := gitRepoURL("."); repo != "" {
|
||||||
if found {
|
props = append(props, &telemetry.Property{
|
||||||
|
// Hash the repository URL for privacy
|
||||||
|
Name: "git_repository_hash",
|
||||||
|
Value: hash(repo),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if projectDir, found := pkg.GetCueModParent(); found {
|
||||||
|
// Hash the project path for privacy
|
||||||
props = append(props, &telemetry.Property{
|
props = append(props, &telemetry.Property{
|
||||||
Name: "project_path_hash",
|
Name: "project_path_hash",
|
||||||
Value: hash(projectDir),
|
Value: hash(projectDir),
|
||||||
|
@ -70,10 +70,11 @@ var doCmd = &cobra.Command{
|
|||||||
return p.Do(ctx, getTargetPath(args), s)
|
return p.Do(ctx, getTargetPath(args), s)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
<-doneCh
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
lg.Fatal().Err(err).Msg("failed to execute plan")
|
lg.Fatal().Err(err).Msg("failed to execute plan")
|
||||||
}
|
}
|
||||||
<-doneCh
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,13 +36,11 @@ var initCmd = &cobra.Command{
|
|||||||
name := viper.GetString("name")
|
name := viper.GetString("name")
|
||||||
|
|
||||||
doneCh := common.TrackCommand(ctx, cmd)
|
doneCh := common.TrackCommand(ctx, cmd)
|
||||||
|
|
||||||
err := pkg.CueModInit(ctx, dir, name)
|
err := pkg.CueModInit(ctx, dir, name)
|
||||||
|
<-doneCh
|
||||||
if err != nil {
|
if err != nil {
|
||||||
lg.Fatal().Err(err).Msg("failed to initialize project")
|
lg.Fatal().Err(err).Msg("failed to initialize project")
|
||||||
}
|
}
|
||||||
|
|
||||||
<-doneCh
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7,7 +7,6 @@ import (
|
|||||||
"go.dagger.io/dagger/cmd/dagger/logger"
|
"go.dagger.io/dagger/cmd/dagger/logger"
|
||||||
"go.dagger.io/dagger/mod"
|
"go.dagger.io/dagger/mod"
|
||||||
"go.dagger.io/dagger/pkg"
|
"go.dagger.io/dagger/pkg"
|
||||||
"go.dagger.io/dagger/telemetry"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var updateCmd = &cobra.Command{
|
var updateCmd = &cobra.Command{
|
||||||
@ -41,6 +40,7 @@ var updateCmd = &cobra.Command{
|
|||||||
|
|
||||||
var update = viper.GetBool("update")
|
var update = viper.GetBool("update")
|
||||||
|
|
||||||
|
doneCh := common.TrackCommand(ctx, cmd)
|
||||||
var processedRequires []*mod.Require
|
var processedRequires []*mod.Require
|
||||||
|
|
||||||
if update && len(args) == 0 {
|
if update && len(args) == 0 {
|
||||||
@ -62,16 +62,12 @@ var updateCmd = &cobra.Command{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
doneCh := common.TrackCommand(ctx, cmd, &telemetry.Property{
|
<-doneCh
|
||||||
Name: "num_packages",
|
|
||||||
Value: len(processedRequires),
|
|
||||||
})
|
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
lg.Error().Err(err).Msg("error installing/updating packages")
|
lg.Error().Err(err).Msg("error installing/updating packages")
|
||||||
}
|
}
|
||||||
|
|
||||||
<-doneCh
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,15 +61,14 @@ var upCmd = &cobra.Command{
|
|||||||
}
|
}
|
||||||
|
|
||||||
doneCh := common.TrackCommand(ctx, cmd)
|
doneCh := common.TrackCommand(ctx, cmd)
|
||||||
|
|
||||||
err = cl.Do(ctx, p.Context(), func(ctx context.Context, s solver.Solver) error {
|
err = cl.Do(ctx, p.Context(), func(ctx context.Context, s solver.Solver) error {
|
||||||
return p.Do(ctx, cue.ParsePath(viper.GetString("target")), s)
|
return p.Do(ctx, cue.ParsePath(viper.GetString("target")), s)
|
||||||
})
|
})
|
||||||
|
<-doneCh
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
lg.Fatal().Err(err).Msg("failed to up environment")
|
lg.Fatal().Err(err).Msg("failed to up environment")
|
||||||
}
|
}
|
||||||
<-doneCh
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user