You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The pizza generate config command flows are missing telemetry. We'll want to add it to the command options (like elsewhere):
type Options struct {
// the path to the git repository on disk to generate a codeowners file for
path string
// where the '.sauced.yaml' file will go
outputPath string
// whether to use interactive mode
isInteractive bool
// from global config
ttyDisabled bool
+ // telemetry for capturing CLI events via PostHog+ telemetry *utils.PosthogCliClient
}
and then add capture events for this flow (captureConfigGen and capture ConfigGenFailure are probably enough)
The text was updated successfully, but these errors were encountered:
Suggested solution
The
pizza generate config
command flows are missing telemetry. We'll want to add it to the command options (like elsewhere):and then add
capture
events for this flow (captureConfigGen
andcapture ConfigGenFailure
are probably enough)The text was updated successfully, but these errors were encountered: