* 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
9 lines
226 B
Python
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']
|