Merge pull request #187 from topoteretes/COG-492-posthog-unique-users

Cog 492 posthog unique users
This commit is contained in:
Vasilije 2024-11-11 12:01:13 +01:00 committed by GitHub
commit f097fcfd3b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 26 additions and 1 deletions

1
.gitignore vendored
View file

@ -177,5 +177,6 @@ cognee/cache/
# Default cognee system directory, used in development
.cognee_system/
.data_storage/
.anon_id
node_modules/

View file

@ -9,9 +9,29 @@ import matplotlib.pyplot as plt
import tiktoken
import nltk
from posthog import Posthog
from cognee.base_config import get_base_config
from cognee.infrastructure.databases.graph import get_graph_engine
from uuid import uuid4
import pathlib
def get_anonymous_id():
"""Creates or reads a anonymous user id"""
home_dir = str(pathlib.Path(pathlib.Path(__file__).parent.parent.parent.resolve()))
if not os.path.isdir(home_dir):
os.makedirs(home_dir, exist_ok=True)
anonymous_id_file = os.path.join(home_dir, ".anon_id")
if not os.path.isfile(anonymous_id_file):
anonymous_id = str(uuid4())
with open(anonymous_id_file, "w", encoding="utf-8") as f:
f.write(anonymous_id)
else:
with open(anonymous_id_file, "r", encoding="utf-8") as f:
anonymous_id = f.read()
return anonymous_id
def send_telemetry(event_name: str, user_id, additional_properties: dict = {}):
if os.getenv("TELEMETRY_DISABLED"):
return
@ -28,11 +48,15 @@ def send_telemetry(event_name: str, user_id, additional_properties: dict = {}):
current_time = datetime.datetime.now()
properties = {
"time": current_time.strftime("%m/%d/%Y"),
"user_id": user_id,
**additional_properties,
}
# Needed to forward properties to PostHog along with id
posthog.identify(get_anonymous_id(), properties)
try:
posthog.capture(user_id, event_name, properties)
posthog.capture(get_anonymous_id(), event_name, properties)
except Exception as e:
print("ERROR sending telemetric data to Posthog. See exception: %s", e)