Skip to content

honeyhive.tracer.core.operations

Tracer operations for span creation and event management.

This module provides dynamic span creation, event management, and tracing operations. It uses dynamic logic for flexible span handling, attribute processing, and event creation with comprehensive error handling.

TracerOperationsInterface

Bases: ABC

Abstract interface for tracer operations.

This ABC defines the required methods that must be implemented by any class that uses TracerOperationsMixin. Provides explicit type safety and clear contracts.

Note: too-few-public-methods disabled - ABC interface defines only abstract methods, concrete implementations in TracerOperationsMixin provide public methods.

Source code in src/honeyhive/tracer/core/operations.py
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
class TracerOperationsInterface(ABC):  # pylint: disable=too-few-public-methods
    """Abstract interface for tracer operations.

    This ABC defines the required methods that must be implemented by any class
    that uses TracerOperationsMixin. Provides explicit type safety and clear contracts.

    Note: too-few-public-methods disabled - ABC interface defines only abstract methods,
    concrete implementations in TracerOperationsMixin provide public methods.
    """

    @abstractmethod
    def get_baggage(self, key: str) -> Optional[str]:
        """Get baggage value by key.

        Args:
            key: The baggage key to retrieve

        Returns:
            Baggage value or None if not found
        """

    @abstractmethod
    def _normalize_attribute_key_dynamically(self, key: str) -> str:
        """Normalize attribute key dynamically for OpenTelemetry compatibility.

        Args:
            key: The attribute key to normalize

        Returns:
            Normalized key string
        """

    @abstractmethod
    def _normalize_attribute_value_dynamically(self, value: Any) -> Any:
        """Normalize attribute value dynamically for OpenTelemetry compatibility.

        Args:
            value: The attribute value to normalize

        Returns:
            Normalized value
        """

get_baggage abstractmethod

get_baggage(key: str) -> Optional[str]

Get baggage value by key.

Parameters:

Name Type Description Default
key str

The baggage key to retrieve

required

Returns:

Type Description
Optional[str]

Baggage value or None if not found

Source code in src/honeyhive/tracer/core/operations.py
47
48
49
50
51
52
53
54
55
56
@abstractmethod
def get_baggage(self, key: str) -> Optional[str]:
    """Get baggage value by key.

    Args:
        key: The baggage key to retrieve

    Returns:
        Baggage value or None if not found
    """

TracerOperationsMixin

Bases: TracerOperationsInterface

Mixin providing dynamic span and event operations for HoneyHive tracer.

This mixin uses dynamic logic for span creation, attribute processing, and event management, providing flexible and robust tracing operations.

This mixin requires implementation of TracerOperationsInterface abstract methods.

Source code in src/honeyhive/tracer/core/operations.py
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
class TracerOperationsMixin(TracerOperationsInterface):
    """Mixin providing dynamic span and event operations for HoneyHive tracer.

    This mixin uses dynamic logic for span creation, attribute processing,
    and event management, providing flexible and robust tracing operations.

    This mixin requires implementation of TracerOperationsInterface abstract methods.
    """

    # Type hint for mypy - this will be provided by the composed class
    if TYPE_CHECKING:
        # These attributes will be available when this mixin is composed
        # Note: is_initialized and project_name are properties in base class
        tracer: Optional[Any]
        client: Optional[Any]
        config: Any  # TracerConfig provided by base class
        _session_id: Optional[str]
        _baggage_lock: Any

        @property
        def is_initialized(
            self,
        ) -> bool:
            """Check if tracer is initialized."""

        @property
        def project_name(
            self,
        ) -> Optional[str]:
            """Get project name."""

    def trace(
        self,
        name: str,
        event_type: Optional[str] = None,
        **kwargs: Any,
    ) -> AbstractContextManager[Any]:
        """Create and return a new span for direct programmatic tracing.

        This method creates a span directly without using decorators, allowing for
        programmatic control over span lifecycle. The span should be used as a
        context manager.

        Args:
            name: Human-readable name for the operation being traced
            event_type: Event type for categorization. Must be one of: "model", "tool",
                or "chain"
            **kwargs: Additional span attributes to set on creation

        Returns:
            Context manager yielding an OpenTelemetry Span object

        Example:
            >>> tracer = HoneyHiveTracer(api_key="...", project="...")
            >>>
            >>> # Direct span creation
            >>> with tracer.trace("my_operation", event_type="tool") as span:
            ...     span.set_attribute("input", "some data")
            ...     result = do_work()
            ...     span.set_attribute("output", result)
            >>>
            >>> # Nested spans (automatic context propagation)
            >>> with tracer.trace("parent_operation") as parent:
            ...     parent.set_attribute("operation.level", "parent")
            ...     with tracer.trace("child_operation") as child:
            ...         child.set_attribute("operation.level", "child")
        """
        # Prepare attributes including event_type if provided
        attributes = kwargs.copy()
        if event_type is not None:
            attributes["honeyhive.event_type"] = event_type
        # Use the tracer's start_span method which handles all the HoneyHive logic
        return self.start_span(name=name, attributes=attributes if attributes else None)

    @contextmanager
    # pylint: disable=too-many-arguments
    # Justification: Dynamic span creation requires multiple optional parameters
    # for flexible attribute handling, timing, and error management.
    def start_span(
        self,
        name: str,
        *,
        kind: Optional[SpanKind] = None,
        attributes: Optional[Dict[str, Any]] = None,
        links: Optional[Any] = None,
        start_time: Optional[int] = None,
        record_exception: bool = True,
        set_status_on_exception: bool = True,
    ) -> Iterator[Any]:
        """Create and manage a span using dynamic span creation logic.

        This method uses dynamic patterns to create spans with flexible
        attribute handling, automatic error management, and graceful degradation.

        Args:
            name: Span name
            kind: Span kind (defaults to INTERNAL)
            attributes: Initial span attributes
            links: Span links
            start_time: Custom start time
            record_exception: Whether to record exceptions automatically
            set_status_on_exception: Whether to set error status on exceptions

        Yields:
            Active span object with dynamic attribute management
        """
        # Dynamic span creation with graceful degradation
        span = self._create_span_dynamically(
            name=name,
            kind=kind,
            attributes=attributes,
            links=links,
            start_time=start_time,
        )

        try:
            # Dynamic span context management
            with self._manage_span_context_dynamically(span):
                yield span

        except Exception as e:
            # Dynamic exception handling
            self._handle_span_exception_dynamically(
                span=span,
                exception=e,
                record_exception=record_exception,
                set_status_on_exception=set_status_on_exception,
            )
            raise
        finally:
            # Dynamic span finalization
            safe_log(
                self, "debug", f"⭐ START_SPAN: Finalize span in finally block: {name}"
            )
            self._finalize_span_dynamically(span)
            safe_log(self, "debug", f"✅ START_SPAN: Span finalized: {name}")

    # pylint: disable=too-many-arguments
    # Justification: Internal span creation method needs multiple parameters
    # for comprehensive dynamic span configuration.
    def _create_span_dynamically(
        self,
        name: str,
        *,
        kind: Optional[SpanKind] = None,
        attributes: Optional[Dict[str, Any]] = None,
        links: Optional[Any] = None,
        start_time: Optional[int] = None,
    ) -> Any:
        """Dynamically create a span with comprehensive error handling."""
        # Check for shutdown conditions (instance-specific for multi-instance)
        if (hasattr(self, "_instance_shutdown") and self._instance_shutdown) or (
            is_shutdown_detected() and getattr(self, "is_main_provider", False)
        ):
            safe_log(self, "debug", "Span creation skipped - shutdown in progress")
            return NoOpSpan()

        # Check if new span creation is disabled
        if self._is_span_creation_disabled_dynamically():
            safe_log(self, "debug", "Span creation disabled during shutdown")
            return NoOpSpan()

        # Graceful degradation if not initialized
        if not self.is_initialized or not self.tracer:
            safe_log(
                self,
                "warning",
                "🔍 DEBUG: Tracer not initialized - using NoOp span",
                honeyhive_data={
                    "span_name": name,
                    "is_initialized": self.is_initialized,
                    "has_tracer": self.tracer is not None,
                    "tracer_type": type(self.tracer).__name__ if self.tracer else None,
                    "has_provider": hasattr(self, "provider")
                    and self.provider is not None,
                    "provider_type": (
                        type(self.provider).__name__
                        if hasattr(self, "provider") and self.provider
                        else None
                    ),
                    "is_main_provider": getattr(self, "is_main_provider", "unknown"),
                    "tracer_instance_id": id(self),
                },
            )
            return NoOpSpan()

        try:
            # Dynamic span creation parameters
            span_params = self._build_span_parameters_dynamically(
                name=name,
                kind=kind,
                attributes=attributes,
                links=links,
                start_time=start_time,
            )

            # Create span using OpenTelemetry tracer
            span = self.tracer.start_span(**span_params)

            # Dynamic attribute processing
            self._process_span_attributes_dynamically(span, attributes)

            safe_log(
                self,
                "debug",
                f"Created span: {name}",
                honeyhive_data={
                    "span_name": name,
                    "span_kind": str(kind) if kind else "INTERNAL",
                    "has_attributes": bool(attributes),
                },
            )

            return span

        except Exception as e:
            safe_log(
                self,
                "warning",
                f"Failed to create span '{name}': {e}",
                honeyhive_data={"error_type": type(e).__name__},
            )
            # Graceful degradation
            return NoOpSpan()

    # pylint: disable=too-many-arguments
    # Justification: Parameter building method needs multiple optional parameters
    # for flexible span configuration.
    def _build_span_parameters_dynamically(
        self,
        name: str,
        *,
        kind: Optional[SpanKind] = None,
        attributes: Optional[Dict[str, Any]] = None,
        links: Optional[Any] = None,
        start_time: Optional[int] = None,
    ) -> Dict[str, Any]:
        """Dynamically build span creation parameters."""
        # Build parameters with proper types for OpenTelemetry start_span
        params: Dict[str, Any] = {"name": name}

        # Add optional parameters dynamically with correct types
        if kind is not None:
            params["kind"] = kind
        else:
            params["kind"] = SpanKind.INTERNAL

        if attributes:
            params["attributes"] = attributes

        if links is not None:
            params["links"] = links

        if start_time is not None:
            params["start_time"] = start_time

        return params

    def _process_span_attributes_dynamically(
        self, span: Any, attributes: Optional[Dict[str, Any]]
    ) -> None:
        """Dynamically process and set span attributes."""
        if not attributes:
            return

        try:
            # Process attributes using dynamic logic
            processed_attributes = self._normalize_attributes_dynamically(attributes)

            # Set attributes on span
            for key, value in processed_attributes.items():
                if value is not None:
                    span.set_attribute(key, value)

        except Exception as e:
            safe_log(
                self,
                "warning",
                f"Failed to process span attributes: {e}",
                honeyhive_data={"error_type": type(e).__name__},
            )

    def _normalize_attributes_dynamically(
        self, attributes: Dict[str, Any]
    ) -> Dict[str, Any]:
        """Dynamically normalize attributes for OpenTelemetry compatibility."""
        normalized = {}

        for key, value in attributes.items():
            # Dynamic key normalization
            normalized_key = self._normalize_attribute_key_dynamically(key)

            # Dynamic value normalization
            normalized_value = self._normalize_attribute_value_dynamically(value)

            if normalized_value is not None:
                normalized[normalized_key] = normalized_value

        return normalized

    def _normalize_attribute_key_dynamically(self, key: str) -> str:
        """Dynamically normalize attribute keys."""
        if not isinstance(key, str):
            key = str(key)

        # Replace invalid characters dynamically
        normalized = key.replace(".", "_").replace("-", "_").replace(" ", "_")

        # Ensure valid identifier
        if not normalized or normalized[0].isdigit():
            normalized = f"attr_{normalized}"

        return normalized

    def _normalize_attribute_value_dynamically(self, value: Any) -> Any:
        """Dynamically normalize attribute values for OpenTelemetry."""
        # Handle None values
        if value is None:
            return None

        # Handle enum values dynamically
        if hasattr(value, "value"):
            return value.value

        # Handle basic types that OpenTelemetry accepts
        if isinstance(value, (str, int, float, bool)):
            return value

        # Convert complex types to strings
        try:
            return str(value)
        except Exception as e:
            # Graceful degradation - never crash host
            safe_log(
                self,
                "debug",
                "Failed to serialize attribute value",
                honeyhive_data={"error_type": type(e).__name__},
            )
            return "<unserializable>"

    def _is_span_creation_disabled_dynamically(self) -> bool:
        """Dynamically check if span creation is disabled."""
        try:
            # For multi-instance architecture: only check global flag if main provider
            if getattr(self, "is_main_provider", False):
                return is_new_span_creation_disabled()
            # Independent providers not affected by global span creation disabling
            return False
        except Exception as e:
            # Graceful degradation - never crash host
            safe_log(
                self,
                "warning",
                f"Span creation state check failed: {e}",
                honeyhive_data={
                    "error_type": type(e).__name__,
                    "operation": "span_creation_check",
                    "fallback": "disabled_check_false",
                },
            )
            # Continue without crashing - return safe default
            return False

    @contextmanager
    def _manage_span_context_dynamically(self, span: Any) -> Iterator[None]:
        """Dynamically manage span context and activation."""
        if isinstance(span, NoOpSpan):
            # No context management needed for NoOp spans
            yield
            return

        # Use OpenTelemetry's proper context management
        with trace.use_span(  # pylint: disable=not-context-manager
            span, end_on_exit=False
        ):
            yield

    def _handle_span_exception_dynamically(
        self,
        span: Any,
        exception: Exception,
        record_exception: bool = True,
        set_status_on_exception: bool = True,
    ) -> None:
        """Dynamically handle exceptions in span context."""
        if isinstance(span, NoOpSpan):
            return

        try:
            if record_exception:
                # Record exception with dynamic attribute extraction
                exception_attributes = self._extract_exception_attributes_dynamically(
                    exception
                )
                span.record_exception(exception, attributes=exception_attributes)

            if set_status_on_exception:
                # Set error status dynamically
                error_description = self._generate_error_description_dynamically(
                    exception
                )
                span.set_status(Status(StatusCode.ERROR, error_description))

        except Exception as e:
            safe_log(
                self,
                "warning",
                f"Failed to handle span exception: {e}",
                honeyhive_data={"original_error": str(exception)},
            )

    def _extract_exception_attributes_dynamically(
        self, exception: Exception
    ) -> Dict[str, Any]:
        """Dynamically extract attributes from exception."""
        attributes = {
            "exception.type": type(exception).__name__,
            "exception.message": str(exception),
        }

        # Add module information if available
        if hasattr(exception, "__module__"):
            attributes["exception.module"] = exception.__module__

        return attributes

    def _generate_error_description_dynamically(self, exception: Exception) -> str:
        """Dynamically generate error description from exception."""
        return f"{type(exception).__name__}: {str(exception)}"

    def _preserve_core_attributes_inline(self, span: Any) -> None:
        """Re-set core attributes inline to ensure they survive FIFO eviction.

        Called just before span.end() for spans approaching the attribute limit.
        By setting core attributes LAST, they become the NEWEST attributes and
        survive OpenTelemetry's FIFO eviction policy.

        Args:
            span: The span to preserve core attributes on (must be mutable)
        """
        try:
            # 1. CRITICAL: Session ID (required for backend ingestion)
            session_id = None
            baggage_session_id = get_baggage("honeyhive.session_id")
            if baggage_session_id:
                session_id = str(baggage_session_id)
            if not session_id:
                config_session_id = getattr(self.config, "session_id", None)
                if config_session_id:
                    session_id = str(config_session_id)
            if session_id:
                span.set_attribute("honeyhive.session_id", session_id)

            # 2. CRITICAL: Source (required for backend routing)
            source = getattr(self, "source", None) or getattr(
                self.config, "source", "unknown"
            )
            span.set_attribute("honeyhive.source", source)

            # 3-6: Event type, name, project, config (if already set)
            if hasattr(span, "attributes") and span.attributes:
                event_type = span.attributes.get(
                    "honeyhive_event_type"
                ) or span.attributes.get("honeyhive.event_type")
                if event_type:
                    span.set_attribute("honeyhive.event_type", event_type)

                event_name = span.attributes.get(
                    "honeyhive_event_name"
                ) or span.attributes.get("honeyhive.event_name")
                if event_name:
                    span.set_attribute("honeyhive.event_name", event_name)

                project = getattr(self, "project", None) or getattr(
                    self.config, "project", None
                )
                if project:
                    span.set_attribute("honeyhive.project", project)

                config_name = span.attributes.get("honeyhive_config")
                if config_name:
                    span.set_attribute("honeyhive.config", config_name)
        except Exception:
            # Best-effort optimization - don't fail span finalization
            pass

    def _finalize_span_dynamically(self, span: Any) -> None:
        """Dynamically finalize span with proper cleanup.

        This method is called in the finally block of start_span() and is
        guaranteed to run for every span. If core attribute preservation is
        enabled and the span is approaching the attribute limit (95% threshold),
        this method will re-set core attributes just before span.end() to ensure
        they survive FIFO eviction.

        Args:
            span: The span to finalize (must be mutable, not yet ReadableSpan)
        """
        if isinstance(span, NoOpSpan):
            safe_log(self, "debug", "Skipping finalize for NoOpSpan")
            return

        try:
            # 🎯 LAZY ACTIVATION: Only preserve core if approaching limit
            if getattr(self.config, "preserve_core_attributes", True):
                max_attributes = getattr(self.config, "max_attributes", 1024)
                threshold = int(max_attributes * 0.95)  # 95% of limit

                # Check current attribute count (minimal overhead: ~0.001ms)
                current_count = (
                    len(span.attributes) if hasattr(span, "attributes") else 0
                )

                if current_count >= threshold:
                    # Span is approaching limit - preserve core attributes
                    # by re-setting them LAST to survive FIFO eviction
                    self._preserve_core_attributes_inline(span)

            # NOW end the span (converts to ReadableSpan and calls on_end)
            span.end()
        except Exception as e:
            safe_log(
                self,
                "error",
                "Failed to finalize span",
                honeyhive_data={
                    "error_type": type(e).__name__,
                    "error_message": str(e),
                },
            )

    # pylint: disable=too-many-arguments
    # Justification: Event creation requires many optional parameters for comprehensive
    # event data (inputs, outputs, metadata, config, feedback, metrics, etc.).
    def create_event(
        self,
        event_name_or_dict: Union[str, Dict[str, Any]],
        *,
        event_type: str = "tool",
        inputs: Optional[Dict[str, Any]] = None,
        outputs: Optional[Dict[str, Any]] = None,
        error: Optional[str] = None,
        duration: Optional[float] = None,
        metadata: Optional[Dict[str, Any]] = None,
        config: Optional[Dict[str, Any]] = None,
        feedback: Optional[Dict[str, Any]] = None,
        metrics: Optional[Dict[str, Any]] = None,
        **kwargs: Any,
    ) -> Optional[str]:
        """Create an event using dynamic API interaction and error handling.

        This method uses dynamic logic to create events with flexible parameter
        handling, automatic session management, and comprehensive error recovery.

        Args:
            event_name: Name of the event
            event_type: Type of event (model, tool, chain, session)
            inputs: Event input data
            outputs: Event output data
            error: Error message if applicable
            duration: Event duration in seconds
            metadata: Additional metadata
            config: Configuration data
            feedback: Feedback data
            metrics: Metrics data
            **kwargs: Additional dynamic parameters

        Returns:
            Event ID if successful, None otherwise
        """
        # Dynamic event creation with graceful degradation
        if not self._can_create_event_dynamically():
            return None

        try:
            # Parse parameters dynamically - handle both dict and individual params
            if isinstance(event_name_or_dict, dict):
                # Dictionary-based call: extract all parameters from dict
                event_dict = event_name_or_dict
                event_name = event_dict.get("event_name", "unknown_event")
                event_type = event_dict.get("event_type", event_type)
                inputs = event_dict.get("inputs", inputs)
                outputs = event_dict.get("outputs", outputs)
                error = event_dict.get("error", error)
                duration = event_dict.get("duration", duration)
                metadata = event_dict.get("metadata", metadata)
                config = event_dict.get("config", config)
                feedback = event_dict.get("feedback", feedback)
                metrics = event_dict.get("metrics", metrics)
                # Merge any additional kwargs from the dict
                for key, value in event_dict.items():
                    if key not in [
                        "event_name",
                        "event_type",
                        "inputs",
                        "outputs",
                        "error",
                        "duration",
                        "metadata",
                        "config",
                        "feedback",
                        "metrics",
                    ]:
                        kwargs[key] = value
            else:
                # Individual parameter call: use event_name_or_dict as event_name
                event_name = str(event_name_or_dict)

            # Build event request dynamically
            event_request = self._build_event_request_dynamically(
                event_name=event_name,
                event_type=event_type,
                inputs=inputs,
                outputs=outputs,
                error=error,
                duration=duration,
                metadata=metadata,
                config=config,
                feedback=feedback,
                metrics=metrics,
                **kwargs,
            )

            # Create event via API
            if self.client is not None:
                response = self.client.events.create(
                    request=PostEventRequest(event=event_request)
                )
                safe_log(
                    self,
                    "debug",
                    "🔍 DEBUG: API response received for event creation",
                    honeyhive_data={
                        "event_name": event_name,
                        "response_type": type(response).__name__,
                        "response_content": str(response)[:200] if response else "None",
                        "has_response": response is not None,
                    },
                )
            else:
                raise RuntimeError("Client not initialized")

            # Dynamic response processing
            event_id = self._extract_event_id_dynamically(response)
            safe_log(
                self,
                "debug",
                "🔍 DEBUG: Event ID extraction result",
                honeyhive_data={
                    "event_name": event_name,
                    "extracted_event_id": event_id,
                    "event_id_type": type(event_id).__name__ if event_id else "None",
                    "response_type": type(response).__name__ if response else "None",
                },
            )

            if event_id:
                safe_log(
                    self,
                    "debug",
                    f"Created event: {event_name}",
                    honeyhive_data={
                        "event_id": event_id,
                        "event_type": event_type,
                        "session_id": self._session_id,
                    },
                )
            else:
                safe_log(
                    self,
                    "warning",
                    "⚠️ DEBUG: Event creation returned no event_id",
                    honeyhive_data={
                        "event_name": event_name,
                        "response": str(response)[:500] if response else "None",
                        "response_type": (
                            type(response).__name__ if response else "None"
                        ),
                    },
                )

            return event_id

        except Exception as e:
            safe_log(
                self,
                "error",
                f"Failed to create event '{event_name}': {e}",
                honeyhive_data={
                    "event_type": event_type,
                    "error_type": type(e).__name__,
                },
            )
            return None

    def _can_create_event_dynamically(self) -> bool:
        """Dynamically check if event creation is possible."""
        # Check required components
        if not self.client:
            safe_log(self, "debug", "No API client available for event creation")
            return False

        # Check session availability
        target_session_id = self._get_target_session_id_dynamically()
        if not target_session_id:
            safe_log(self, "warning", "No session ID available for event creation")
            return False

        return True

    def _get_target_session_id_dynamically(self) -> Optional[str]:
        """Dynamically determine target session ID for event creation."""
        # Priority order: explicit session_id, current baggage session
        # Check both _session_id and session_id for backwards compatibility
        session_id = getattr(self, "_session_id", None) or getattr(
            self, "session_id", None
        )
        if session_id:
            safe_log(
                self,
                "debug",
                "🔍 DEBUG: Found session ID for event creation",
                honeyhive_data={
                    "session_id": session_id,
                    "source": (
                        "_session_id"
                        if hasattr(self, "_session_id") and self._session_id
                        else "session_id"
                    ),
                },
            )
            return str(session_id)

        # Check baggage for session ID
        try:
            baggage_session = self.get_baggage(  # pylint: disable=assignment-from-no-return
                "session_id"
            )
            if baggage_session:
                return str(baggage_session)
        except Exception as e:
            # Graceful degradation - never crash host
            safe_log(
                self,
                "debug",
                "Failed to get baggage session",
                honeyhive_data={"error_type": type(e).__name__},
            )

        return None

    # pylint: disable=too-many-arguments
    # Justification: Event request building requires many optional parameters
    # to support comprehensive event data structure.
    def _build_event_request_dynamically(
        self,
        event_name: str,
        event_type: str,
        *,
        inputs: Optional[Dict[str, Any]] = None,
        outputs: Optional[Dict[str, Any]] = None,
        error: Optional[str] = None,
        duration: Optional[float] = None,
        metadata: Optional[Dict[str, Any]] = None,
        config: Optional[Dict[str, Any]] = None,
        feedback: Optional[Dict[str, Any]] = None,
        metrics: Optional[Dict[str, Any]] = None,
        **kwargs: Any,
    ) -> Dict[str, Any]:
        """Dynamically build event request with flexible parameter handling."""
        # Get target session ID
        target_session_id = self._get_target_session_id_dynamically()

        # Normalize event_type string
        event_type_str = self._normalize_event_type(event_type)

        # Build base request parameters with proper types using dynamic methods
        request_params: Dict[str, Any] = {
            "project": str(self.project_name) if self.project_name else "",
            "source": self._get_source_dynamically(),
            "session_id": str(target_session_id) if target_session_id else None,
            "event_name": str(event_name),
            "event_type": event_type_str,
            "config": self._get_config_dynamically(config),
            "inputs": self._get_inputs_dynamically(inputs),
            "duration": self._get_duration_dynamically(duration),
        }

        # Add optional parameters dynamically
        optional_params = {
            "outputs": outputs,
            "error": error,
            "metadata": metadata,
            "feedback": feedback,
            "metrics": metrics,
        }

        for param_name, param_value in optional_params.items():
            if param_value is not None:
                # Ensure proper type conversion for each parameter
                if param_name in ["error"] and isinstance(param_value, str):
                    request_params[param_name] = param_value
                elif param_name in ["duration"] and isinstance(
                    param_value, (int, float)
                ):
                    request_params[param_name] = float(param_value)
                elif param_name in [
                    "inputs",
                    "outputs",
                    "metadata",
                    "config",
                    "feedback",
                    "metrics",
                ] and isinstance(param_value, dict):
                    request_params[param_name] = param_value
                else:
                    # For other types, convert to appropriate type or skip
                    request_params[param_name] = param_value

        # Add any additional kwargs dynamically
        for key, value in kwargs.items():
            if value is not None and key not in request_params:
                request_params[key] = value

        return request_params

    def _normalize_event_type(self, event_type: str) -> str:
        """Normalize event type string."""
        # Valid event types
        valid_types = {"model", "tool", "chain"}

        # Normalize to lowercase
        normalized = event_type.lower()

        # Handle session type - fallback to tool since session is handled separately
        if normalized == "session":
            return "tool"

        # Return normalized type or default to tool
        return normalized if normalized in valid_types else "tool"

    def _extract_event_id_dynamically(self, response: Any) -> Optional[str]:
        """Dynamically extract event ID from API response."""
        safe_log(
            self,
            "debug",
            "🔍 DEBUG: Starting event ID extraction",
            honeyhive_data={
                "response_type": type(response).__name__,
                "response_str": str(response)[:300] if response else "None",
                "has_response": response is not None,
                "response_attrs": dir(response) if response else [],
            },
        )

        # Try different response formats dynamically
        id_attributes = ["event_id", "id", "uuid"]

        for attr in id_attributes:
            if hasattr(response, attr):
                event_id = getattr(response, attr)
                safe_log(
                    self,
                    "debug",
                    f"🔍 DEBUG: Found attribute {attr}",
                    honeyhive_data={
                        "attribute": attr,
                        "value": event_id,
                        "value_type": type(event_id).__name__ if event_id else "None",
                        "is_truthy": bool(event_id),
                    },
                )
                if event_id:
                    return str(event_id)

        # Try dictionary access if response is dict-like
        if hasattr(response, "get"):
            safe_log(
                self,
                "debug",
                "🔍 DEBUG: Trying dictionary access",
                honeyhive_data={
                    "response_keys": (
                        list(response.keys())
                        if hasattr(response, "keys")
                        else "no_keys_method"
                    )
                },
            )
            for attr in id_attributes:
                event_id = response.get(attr)
                safe_log(
                    self,
                    "debug",
                    f"🔍 DEBUG: Dictionary get for {attr}",
                    honeyhive_data={
                        "attribute": attr,
                        "value": event_id,
                        "value_type": type(event_id).__name__ if event_id else "None",
                        "is_truthy": bool(event_id),
                    },
                )
                if event_id:
                    return str(event_id)

        safe_log(
            self,
            "warning",
            "⚠️ DEBUG: No event ID found in response",
            honeyhive_data={
                "response_type": type(response).__name__,
                "tried_attributes": id_attributes,
                "response_content": str(response)[:500] if response else "None",
            },
        )
        return None

    def _get_source_dynamically(self) -> str:
        """Dynamically get source value with intelligent fallback."""
        # Try to get from tracer instance
        if hasattr(self, "source") and self.source:
            return str(self.source)

        # Try to get from config
        if hasattr(self, "config") and self.config:
            source = getattr(self.config, "source", None)
            if source:
                return str(source)

        # Intelligent fallback based on context
        if hasattr(self, "is_evaluation") and self.is_evaluation:
            return "evaluation"
        if hasattr(self, "test_mode") and getattr(self, "test_mode", False):
            return "test"
        return "dev"

    def _get_config_dynamically(
        self, config: Optional[Dict[str, Any]]
    ) -> Dict[str, Any]:
        """Dynamically get config with intelligent defaults."""
        if config is not None:
            return config

        # Try to extract from current context or span
        if hasattr(self, "_current_span") and self._current_span:
            span_config = getattr(self._current_span, "config", None)
            if span_config:
                return dict(span_config)

        # Return empty dict as safe default
        return {}

    def _get_inputs_dynamically(
        self, inputs: Optional[Dict[str, Any]]
    ) -> Dict[str, Any]:
        """Dynamically get inputs with intelligent defaults."""
        if inputs is not None:
            return inputs

        # Try to extract from current context or span
        if hasattr(self, "_current_span") and self._current_span:
            span_inputs = getattr(self._current_span, "inputs", None)
            if span_inputs:
                return dict(span_inputs)

        # Return empty dict as safe default
        return {}

    def _get_duration_dynamically(self, duration: Optional[float]) -> float:
        """Dynamically get duration with intelligent calculation."""
        if duration is not None:
            return float(duration)

        # Try to calculate from current span timing
        if hasattr(self, "_current_span") and self._current_span:
            start_time = getattr(self._current_span, "start_time", None)
            end_time = getattr(self._current_span, "end_time", None)
            if start_time and end_time:
                calculated_duration = end_time - start_time
                if calculated_duration > 0:
                    return float(calculated_duration)

        # Return minimal duration as safe default
        return 0.0

tracer instance-attribute

tracer: Optional[Any]

client instance-attribute

client: Optional[Any]

config instance-attribute

config: Any

is_initialized property

is_initialized: bool

Check if tracer is initialized.

project_name property

project_name: Optional[str]

Get project name.

trace

trace(
    name: str,
    event_type: Optional[str] = None,
    **kwargs: Any
) -> AbstractContextManager[Any]

Create and return a new span for direct programmatic tracing.

This method creates a span directly without using decorators, allowing for programmatic control over span lifecycle. The span should be used as a context manager.

Parameters:

Name Type Description Default
name str

Human-readable name for the operation being traced

required
event_type Optional[str]

Event type for categorization. Must be one of: "model", "tool", or "chain"

None
**kwargs Any

Additional span attributes to set on creation

{}

Returns:

Type Description
AbstractContextManager[Any]

Context manager yielding an OpenTelemetry Span object

Example

tracer = HoneyHiveTracer(api_key="...", project="...")

Direct span creation

with tracer.trace("my_operation", event_type="tool") as span: ... span.set_attribute("input", "some data") ... result = do_work() ... span.set_attribute("output", result)

Nested spans (automatic context propagation)

with tracer.trace("parent_operation") as parent: ... parent.set_attribute("operation.level", "parent") ... with tracer.trace("child_operation") as child: ... child.set_attribute("operation.level", "child")

Source code in src/honeyhive/tracer/core/operations.py
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
def trace(
    self,
    name: str,
    event_type: Optional[str] = None,
    **kwargs: Any,
) -> AbstractContextManager[Any]:
    """Create and return a new span for direct programmatic tracing.

    This method creates a span directly without using decorators, allowing for
    programmatic control over span lifecycle. The span should be used as a
    context manager.

    Args:
        name: Human-readable name for the operation being traced
        event_type: Event type for categorization. Must be one of: "model", "tool",
            or "chain"
        **kwargs: Additional span attributes to set on creation

    Returns:
        Context manager yielding an OpenTelemetry Span object

    Example:
        >>> tracer = HoneyHiveTracer(api_key="...", project="...")
        >>>
        >>> # Direct span creation
        >>> with tracer.trace("my_operation", event_type="tool") as span:
        ...     span.set_attribute("input", "some data")
        ...     result = do_work()
        ...     span.set_attribute("output", result)
        >>>
        >>> # Nested spans (automatic context propagation)
        >>> with tracer.trace("parent_operation") as parent:
        ...     parent.set_attribute("operation.level", "parent")
        ...     with tracer.trace("child_operation") as child:
        ...         child.set_attribute("operation.level", "child")
    """
    # Prepare attributes including event_type if provided
    attributes = kwargs.copy()
    if event_type is not None:
        attributes["honeyhive.event_type"] = event_type
    # Use the tracer's start_span method which handles all the HoneyHive logic
    return self.start_span(name=name, attributes=attributes if attributes else None)

start_span

start_span(
    name: str,
    *,
    kind: Optional[SpanKind] = None,
    attributes: Optional[Dict[str, Any]] = None,
    links: Optional[Any] = None,
    start_time: Optional[int] = None,
    record_exception: bool = True,
    set_status_on_exception: bool = True
) -> Iterator[Any]

Create and manage a span using dynamic span creation logic.

This method uses dynamic patterns to create spans with flexible attribute handling, automatic error management, and graceful degradation.

Parameters:

Name Type Description Default
name str

Span name

required
kind Optional[SpanKind]

Span kind (defaults to INTERNAL)

None
attributes Optional[Dict[str, Any]]

Initial span attributes

None
links Optional[Any]

Span links

None
start_time Optional[int]

Custom start time

None
record_exception bool

Whether to record exceptions automatically

True
set_status_on_exception bool

Whether to set error status on exceptions

True

Yields:

Type Description
Any

Active span object with dynamic attribute management

Source code in src/honeyhive/tracer/core/operations.py
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
@contextmanager
# pylint: disable=too-many-arguments
# Justification: Dynamic span creation requires multiple optional parameters
# for flexible attribute handling, timing, and error management.
def start_span(
    self,
    name: str,
    *,
    kind: Optional[SpanKind] = None,
    attributes: Optional[Dict[str, Any]] = None,
    links: Optional[Any] = None,
    start_time: Optional[int] = None,
    record_exception: bool = True,
    set_status_on_exception: bool = True,
) -> Iterator[Any]:
    """Create and manage a span using dynamic span creation logic.

    This method uses dynamic patterns to create spans with flexible
    attribute handling, automatic error management, and graceful degradation.

    Args:
        name: Span name
        kind: Span kind (defaults to INTERNAL)
        attributes: Initial span attributes
        links: Span links
        start_time: Custom start time
        record_exception: Whether to record exceptions automatically
        set_status_on_exception: Whether to set error status on exceptions

    Yields:
        Active span object with dynamic attribute management
    """
    # Dynamic span creation with graceful degradation
    span = self._create_span_dynamically(
        name=name,
        kind=kind,
        attributes=attributes,
        links=links,
        start_time=start_time,
    )

    try:
        # Dynamic span context management
        with self._manage_span_context_dynamically(span):
            yield span

    except Exception as e:
        # Dynamic exception handling
        self._handle_span_exception_dynamically(
            span=span,
            exception=e,
            record_exception=record_exception,
            set_status_on_exception=set_status_on_exception,
        )
        raise
    finally:
        # Dynamic span finalization
        safe_log(
            self, "debug", f"⭐ START_SPAN: Finalize span in finally block: {name}"
        )
        self._finalize_span_dynamically(span)
        safe_log(self, "debug", f"✅ START_SPAN: Span finalized: {name}")

create_event

create_event(
    event_name_or_dict: Union[str, Dict[str, Any]],
    *,
    event_type: str = "tool",
    inputs: Optional[Dict[str, Any]] = None,
    outputs: Optional[Dict[str, Any]] = None,
    error: Optional[str] = None,
    duration: Optional[float] = None,
    metadata: Optional[Dict[str, Any]] = None,
    config: Optional[Dict[str, Any]] = None,
    feedback: Optional[Dict[str, Any]] = None,
    metrics: Optional[Dict[str, Any]] = None,
    **kwargs: Any
) -> Optional[str]

Create an event using dynamic API interaction and error handling.

This method uses dynamic logic to create events with flexible parameter handling, automatic session management, and comprehensive error recovery.

Parameters:

Name Type Description Default
event_name

Name of the event

required
event_type str

Type of event (model, tool, chain, session)

'tool'
inputs Optional[Dict[str, Any]]

Event input data

None
outputs Optional[Dict[str, Any]]

Event output data

None
error Optional[str]

Error message if applicable

None
duration Optional[float]

Event duration in seconds

None
metadata Optional[Dict[str, Any]]

Additional metadata

None
config Optional[Dict[str, Any]]

Configuration data

None
feedback Optional[Dict[str, Any]]

Feedback data

None
metrics Optional[Dict[str, Any]]

Metrics data

None
**kwargs Any

Additional dynamic parameters

{}

Returns:

Type Description
Optional[str]

Event ID if successful, None otherwise

Source code in src/honeyhive/tracer/core/operations.py
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
def create_event(
    self,
    event_name_or_dict: Union[str, Dict[str, Any]],
    *,
    event_type: str = "tool",
    inputs: Optional[Dict[str, Any]] = None,
    outputs: Optional[Dict[str, Any]] = None,
    error: Optional[str] = None,
    duration: Optional[float] = None,
    metadata: Optional[Dict[str, Any]] = None,
    config: Optional[Dict[str, Any]] = None,
    feedback: Optional[Dict[str, Any]] = None,
    metrics: Optional[Dict[str, Any]] = None,
    **kwargs: Any,
) -> Optional[str]:
    """Create an event using dynamic API interaction and error handling.

    This method uses dynamic logic to create events with flexible parameter
    handling, automatic session management, and comprehensive error recovery.

    Args:
        event_name: Name of the event
        event_type: Type of event (model, tool, chain, session)
        inputs: Event input data
        outputs: Event output data
        error: Error message if applicable
        duration: Event duration in seconds
        metadata: Additional metadata
        config: Configuration data
        feedback: Feedback data
        metrics: Metrics data
        **kwargs: Additional dynamic parameters

    Returns:
        Event ID if successful, None otherwise
    """
    # Dynamic event creation with graceful degradation
    if not self._can_create_event_dynamically():
        return None

    try:
        # Parse parameters dynamically - handle both dict and individual params
        if isinstance(event_name_or_dict, dict):
            # Dictionary-based call: extract all parameters from dict
            event_dict = event_name_or_dict
            event_name = event_dict.get("event_name", "unknown_event")
            event_type = event_dict.get("event_type", event_type)
            inputs = event_dict.get("inputs", inputs)
            outputs = event_dict.get("outputs", outputs)
            error = event_dict.get("error", error)
            duration = event_dict.get("duration", duration)
            metadata = event_dict.get("metadata", metadata)
            config = event_dict.get("config", config)
            feedback = event_dict.get("feedback", feedback)
            metrics = event_dict.get("metrics", metrics)
            # Merge any additional kwargs from the dict
            for key, value in event_dict.items():
                if key not in [
                    "event_name",
                    "event_type",
                    "inputs",
                    "outputs",
                    "error",
                    "duration",
                    "metadata",
                    "config",
                    "feedback",
                    "metrics",
                ]:
                    kwargs[key] = value
        else:
            # Individual parameter call: use event_name_or_dict as event_name
            event_name = str(event_name_or_dict)

        # Build event request dynamically
        event_request = self._build_event_request_dynamically(
            event_name=event_name,
            event_type=event_type,
            inputs=inputs,
            outputs=outputs,
            error=error,
            duration=duration,
            metadata=metadata,
            config=config,
            feedback=feedback,
            metrics=metrics,
            **kwargs,
        )

        # Create event via API
        if self.client is not None:
            response = self.client.events.create(
                request=PostEventRequest(event=event_request)
            )
            safe_log(
                self,
                "debug",
                "🔍 DEBUG: API response received for event creation",
                honeyhive_data={
                    "event_name": event_name,
                    "response_type": type(response).__name__,
                    "response_content": str(response)[:200] if response else "None",
                    "has_response": response is not None,
                },
            )
        else:
            raise RuntimeError("Client not initialized")

        # Dynamic response processing
        event_id = self._extract_event_id_dynamically(response)
        safe_log(
            self,
            "debug",
            "🔍 DEBUG: Event ID extraction result",
            honeyhive_data={
                "event_name": event_name,
                "extracted_event_id": event_id,
                "event_id_type": type(event_id).__name__ if event_id else "None",
                "response_type": type(response).__name__ if response else "None",
            },
        )

        if event_id:
            safe_log(
                self,
                "debug",
                f"Created event: {event_name}",
                honeyhive_data={
                    "event_id": event_id,
                    "event_type": event_type,
                    "session_id": self._session_id,
                },
            )
        else:
            safe_log(
                self,
                "warning",
                "⚠️ DEBUG: Event creation returned no event_id",
                honeyhive_data={
                    "event_name": event_name,
                    "response": str(response)[:500] if response else "None",
                    "response_type": (
                        type(response).__name__ if response else "None"
                    ),
                },
            )

        return event_id

    except Exception as e:
        safe_log(
            self,
            "error",
            f"Failed to create event '{event_name}': {e}",
            honeyhive_data={
                "event_type": event_type,
                "error_type": type(e).__name__,
            },
        )
        return None