Highly-opinionated (ex-bullshit-free) MTPROTO proxy for Telegram. If you use v1.0 or upgrade broke you proxy, please read the chapter Version 2
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

init.go 414B

123456789101112131415161718
  1. package stats
  2. const (
  3. DefaultMetricPrefix = "mtg"
  4. DefaultStatsdMetricPrefix = DefaultMetricPrefix + "."
  5. DefaultStatsdTagFormat = "datadog"
  6. MetricActiveConnection = "active_connections"
  7. MetricSessionDuration = "session_duration"
  8. MetricConcurrencyLimited = "concurrency_limited"
  9. MetricIPBlocklisted = "ip_blocklisted"
  10. TagIPType = "ip_type"
  11. TagIPTypeIPv4 = "ipv4"
  12. TagIPTypeIPv6 = "ipv6"
  13. )