graphiti/graphiti_core/telemetry/__init__.py
Daniel Chalef cb4e187aed
feat: add telemetry with PostHog and update Docker configurations (#633)
* Implement telemetry feature for anonymous usage statistics collection in Graphiti; update Dockerfile CMD format for better signal handling; adjust Neo4j URI and healthcheck in docker-compose.yml; add new dependencies in pyproject.toml and poetry.lock.

* remove duplicated properties

* Update Dockerfile CMD to use JSON array format for improved signal handling

* remove tommlib dep only in 3.11

* Delete server/graph_service/logging_config.py
2025-06-27 12:23:30 -07:00

9 lines
226 B
Python

"""
Telemetry module for Graphiti.
This module provides anonymous usage analytics to help improve Graphiti.
"""
from .telemetry import capture_event, is_telemetry_enabled
__all__ = ['capture_event', 'is_telemetry_enabled']