throttle-notice-drip.txt 1.4 KB

1234567891011121314151617181920212223242526
  1. {% load humanize %}
  2. {% if product %}
  3. Hello and thank you for using GlitchTip. We noticed your organization {{ organization.name|striptags }}
  4. has exceeded its monthly event limit on your {{ product.name }} and wanted to give you a heads up.
  5. Your plan allows for {{ event_limit|intcomma }} events, but for the current billing period we have received
  6. {{ organization.total_event_count|intcomma }} events for your organization. Here are a couple options to avoid this in the future.
  7. Upgrade to a new plan for more events at this link:
  8. {{ subscription_link }}
  9. Read about configuring your SDK to send fewer events to GlitchTip here:
  10. {{ faq_link }}
  11. In the meantime, we have placed a {{ organization.event_throttle_rate }}% throttle on incoming events
  12. from projects on your organization account for this billing period. If you choose to upgrade your plan,
  13. this throttle will be removed. Otherwise, it will reset at the beginning of your next billing cycle.
  14. {% else %}
  15. Hello and thank you for using GlitchTip. We noticed you recently created an account for your organization
  16. {{ organization.name|striptags }}, but that you haven't yet signed up for a subscription plan. We invite you to
  17. check out our subscription options and choose the right one for your organization at this link:
  18. {{ subscription_link }}
  19. Your organization won't be able to receive events on GlitchTip until you choose a subscription,
  20. so please do sign up to get started.
  21. {% endif %}