@interopio/otel 0.0.185 → 0.0.186
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/insights.d.ts +0 -33
- package/package.json +1 -1
package/insights.d.ts
CHANGED
|
@@ -913,11 +913,6 @@ export namespace IOInsights {
|
|
|
913
913
|
* automatically be nested under the application startup trace.
|
|
914
914
|
*/
|
|
915
915
|
startupParentSpanTimeoutMs?: number;
|
|
916
|
-
/**
|
|
917
|
-
* Called by the application to signify that its startup has completed
|
|
918
|
-
* and no further spans should be nested under the startup trace.
|
|
919
|
-
*/
|
|
920
|
-
startupTraceFinished?: () => void;
|
|
921
916
|
|
|
922
917
|
/**
|
|
923
918
|
* If `true`, the application will create a span with the name `interopio.api.application.close` when
|
|
@@ -927,34 +922,6 @@ export namespace IOInsights {
|
|
|
927
922
|
* @default false
|
|
928
923
|
*/
|
|
929
924
|
closeTrace?: boolean;
|
|
930
|
-
/**
|
|
931
|
-
* Optional callback function to programmatically create marker spans in the Clickstream trace.
|
|
932
|
-
* Allows applications to mark specific user interaction events beyond automatic click tracking
|
|
933
|
-
* (e.g., custom UI interactions, gesture events, programmatic actions).
|
|
934
|
-
*
|
|
935
|
-
* The callback receives:
|
|
936
|
-
* - source: A descriptive name for the marker (e.g., "user-swiped-left", "custom-button-action")
|
|
937
|
-
* - data: Optional span data organized by verbosity level for detailed context
|
|
938
|
-
*
|
|
939
|
-
* Returns either PropagationInfo to link the marker span to other traces, or void.
|
|
940
|
-
*
|
|
941
|
-
* Works in conjunction with the clickstream setting to track detailed user interaction patterns.
|
|
942
|
-
*/
|
|
943
|
-
clickstreamMarker?: MarkerSpanCallback;
|
|
944
|
-
/**
|
|
945
|
-
* Optional callback function to programmatically create marker spans in the User Journey trace.
|
|
946
|
-
* Allows applications to mark significant points in a user's journey through the application
|
|
947
|
-
* (e.g., navigation events, key user actions, milestone completions).
|
|
948
|
-
*
|
|
949
|
-
* The callback receives:
|
|
950
|
-
* - source: A descriptive name for the marker (e.g., "user-navigated-to-dashboard")
|
|
951
|
-
* - data: Optional span data organized by verbosity level for detailed context
|
|
952
|
-
*
|
|
953
|
-
* Returns either PropagationInfo to link the marker span to other traces, or void.
|
|
954
|
-
*
|
|
955
|
-
* Works in conjunction with the userJourney setting to track the user's entire session flow.
|
|
956
|
-
*/
|
|
957
|
-
userJourneyMarker?: MarkerSpanCallback;
|
|
958
925
|
|
|
959
926
|
/**
|
|
960
927
|
* If an OTEL TraceProvider isn't provided to the library,
|