mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 18:26:15 +01:00
45 lines
1.7 KiB
Python
45 lines
1.7 KiB
Python
|
import posthoganalytics
|
||
|
import requests
|
||
|
from dateutil.relativedelta import relativedelta
|
||
|
from django.utils import timezone
|
||
|
|
||
|
from ee.clickhouse.client import sync_execute
|
||
|
from ee.models.license import License
|
||
|
from posthog.models import User
|
||
|
|
||
|
|
||
|
def send_license_usage():
|
||
|
license = License.objects.first_valid()
|
||
|
if not license:
|
||
|
return
|
||
|
try:
|
||
|
date_from = (timezone.now() - relativedelta(days=1)).replace(hour=0, minute=0, second=0, microsecond=0)
|
||
|
date_to = timezone.now().replace(hour=0, minute=0, second=0, microsecond=0)
|
||
|
events_count = sync_execute(
|
||
|
"select count(1) from events where timestamp >= %(date_from)s and timestamp < %(date_to)s",
|
||
|
{"date_from": date_from, "date_to": date_to},
|
||
|
)[0][0]
|
||
|
response = requests.post(
|
||
|
"https://license.posthog.com/licenses/usage",
|
||
|
data={"date": date_from.strftime("%Y-%m-%d"), "key": license.key, "events_count": events_count,},
|
||
|
)
|
||
|
|
||
|
response.raise_for_status()
|
||
|
if not response.ok:
|
||
|
posthoganalytics.capture(
|
||
|
User.objects.first().distinct_id, # type: ignore
|
||
|
"send license usage data error",
|
||
|
{
|
||
|
"error": response.content,
|
||
|
"status_code": response.status_code,
|
||
|
"date": date_from.strftime("%Y-%m-%d"),
|
||
|
"events_count": events_count,
|
||
|
},
|
||
|
)
|
||
|
except Exception as err:
|
||
|
posthoganalytics.capture(
|
||
|
User.objects.first().distinct_id, # type: ignore
|
||
|
"send license usage data error",
|
||
|
{"error": str(err), "date": date_from.strftime("%Y-%m-%d")},
|
||
|
)
|