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
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. )