github.com/anycable/anycable-go@v1.5.1/telemetry/config.go (about)

     1  package telemetry
     2  
     3  type Config struct {
     4  	Token    string
     5  	Endpoint string
     6  }
     7  
     8  func NewConfig() *Config {
     9  	return &Config{
    10  		Token:    "phc_fc9VFWdFAAm5gSlCodHq93iaxxnTTKbjOwsWgAS1FMP",
    11  		Endpoint: "https://app.posthog.com",
    12  	}
    13  }