Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Opt-out telemetry" should probably be more advertised #23

Closed
thbar opened this issue Jun 13, 2022 · 2 comments
Closed

"Opt-out telemetry" should probably be more advertised #23

thbar opened this issue Jun 13, 2022 · 2 comments
Assignees
Labels
enhancement New feature or request

Comments

@thbar
Copy link

thbar commented Jun 13, 2022

I realised, by looking at the code only, that some stats about use appear to be sent by default to a remote database.

Although I understand the benefits of such stats as a tool builder, in particular during a beta, I find it problematic that it is not advertised clearly in the readme, with instructions to opt-out, or a completely opt-in operation instead (RGPD compliance etc).

I doubt most users will realise that (especially when using the Docker version), so I'm creating an issue to give a bit of visibility to this topic.

const (
influxURL = "https://europe-west1-1.gcp.cloud2.influxdata.com"
influxToken = "ZgkcIAuMuoSM0KcG38iui5nLQrYv9oLiSCfJ2sin2exvxJnbMQjUea1kGQrsGteKCazgo_83thED1lS1O1XYEw=="
influxOrg = "4b2adfedb7f7619e"
influxBucket = "greenlight"
)

validateCmd.Flags().BoolP("telemetry", "", true, "Whether to collect and send information about execution time")

viper.BindPFlag("telemetry", validateCmd.Flags().Lookup("telemetry"))

if viper.GetBool("telemetry") {
logTelemetry(validator, ctx.Results())

func logTelemetry(validator *greenlight.Validator, results []*greenlight.ValidationResult) {
client := influxdb2.NewClient(influxURL, influxToken)
defer client.Close()
writeAPI := client.WriteAPI(influxOrg, influxBucket)
for _, r := range results {
if viper.GetBool("telemetry") {
p := newPoint("document")
p.AddField("schema_name", validator.SchemaPath())
p.AddField("schema_bytes", validator.SchemaSize())
p.AddField("execution_time_ms", r.ExecutionTime().Milliseconds())
p.AddField("name", r.Name)
p.AddField("valid", r.Valid)
writeAPI.WritePoint(p)
for _, rule := range r.ValidationRules {
p := newPoint("rule")
p.AddField("schema_name", validator.SchemaPath())
p.AddField("schema_bytes", validator.SchemaSize())
p.AddField("execution_time_ms", rule.ExecutionTime().Milliseconds())
p.AddField("document_name", r.Name)
p.AddTag("name", rule.Name)
p.AddField("valid", rule.Valid)
p.AddField("error_count", rule.ErrorCount)
writeAPI.WritePoint(p)
}
}
}
writeAPI.Flush()
}

@lekotros
Copy link
Collaborator

Telemetry collection is going to be removed in the upcoming version (v0.3.5)

@lekotros lekotros self-assigned this Jun 14, 2022
@lekotros lekotros added the enhancement New feature or request label Jun 14, 2022
lekotros added a commit that referenced this issue Jun 14, 2022
@lekotros
Copy link
Collaborator

Fixed in #27

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants