forked from getsentry/sentry-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject_structure_detailed.txt
More file actions
3307 lines (3306 loc) · 268 KB
/
project_structure_detailed.txt
File metadata and controls
3307 lines (3306 loc) · 268 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
79
80
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
[2.5K May 28 11:22] .
├── [2.4K May 27 19:34] .craft.yml
├── [ 252 Feb 18 16:11] .editorconfig
├── [ 128 May 27 19:34] .gitattributes
├── [ 256 Feb 18 16:11] .github
│ ├── [ 57 Feb 18 16:11] CODEOWNERS
│ ├── [ 256 May 27 19:34] ISSUE_TEMPLATE
│ │ ├── [2.1K May 27 19:34] bug_report_android.yml
│ │ ├── [2.2K May 27 19:34] bug_report_java.yml
│ │ ├── [ 235 Feb 18 16:11] config.yml
│ │ ├── [ 843 May 27 19:34] feature_android.yml
│ │ ├── [ 837 May 27 19:34] feature_java.yml
│ │ └── [ 421 May 27 19:34] maintainer-blank.yml
│ ├── [ 116 Feb 18 16:11] dependabot.yml
│ ├── [ 624 Feb 18 16:11] file-filters.yml
│ ├── [ 759 Feb 18 16:11] pull_request_template.md
│ └── [ 544 May 27 19:34] workflows
│ ├── [ 378 Feb 18 16:11] add-platform-label.yml
│ ├── [3.2K May 27 19:34] agp-matrix.yml
│ ├── [2.0K May 27 19:34] build.yml
│ ├── [2.0K Feb 18 16:11] changes-in-high-risk-code.yml
│ ├── [1.1K May 27 19:34] codeql-analysis.yml
│ ├── [ 189 Feb 18 16:11] danger.yml
│ ├── [ 631 May 27 19:34] enforce-license-compliance.yml
│ ├── [1.1K Feb 18 16:11] format-code.yml
│ ├── [3.9K May 27 19:34] integration-tests-benchmarks.yml
│ ├── [4.0K May 27 19:34] integration-tests-ui-critical.yml
│ ├── [2.1K May 27 19:34] integration-tests-ui.yml
│ ├── [1.0K May 27 19:34] release-build.yml
│ ├── [1.3K May 27 19:34] release.yml
│ ├── [4.3K May 27 19:34] system-tests-backend.yml
│ └── [ 827 Feb 18 16:11] update-deps.yml
├── [ 392 May 27 19:34] .gitignore
├── [ 0 Feb 18 16:11] .gitmodules
├── [ 96 Feb 18 16:11] .mvn
│ └── [ 160 Feb 18 16:11] wrapper
│ ├── [4.5K Feb 18 16:11] MavenWrapperDownloader.java
│ └── [ 218 Feb 18 16:11] maven-wrapper.properties
├── [ 160 Feb 18 16:11] .sauce
│ ├── [ 857 Feb 18 16:11] sentry-uitest-android-benchmark-lite.yml
│ ├── [2.8K Feb 18 16:11] sentry-uitest-android-benchmark.yml
│ └── [1.3K Feb 18 16:11] sentry-uitest-android-ui.yml
├── [246K May 27 19:34] CHANGELOG.md
├── [1.4K May 27 19:34] CONTRIBUTING.md
├── [1.1K Feb 18 16:11] LICENSE
├── [2.4K Feb 18 16:11] MIGRATION.md
├── [2.2K May 27 19:34] Makefile
├── [ 18K May 27 19:34] README.md
├── [ 512 May 28 11:08] aidocs
│ ├── [1.5K May 28 11:14] .cursorrules
│ ├── [ 18K May 27 20:36] README.md
│ ├── [ 512 May 28 11:04] mermaid
│ │ ├── [5.1K May 28 11:06] README.md
│ │ ├── [ 805 May 28 10:59] sentry-crash-monitoring-anr-detection.mmd
│ │ ├── [ 675 May 28 11:00] sentry-crash-monitoring-crash-recovery.mmd
│ │ ├── [ 737 May 28 11:01] sentry-crash-monitoring-exception-capture.mmd
│ │ ├── [ 689 May 28 10:59] sentry-crash-monitoring-native-crash.mmd
│ │ ├── [ 662 May 28 11:00] sentry-crash-monitoring-startup-crash.mmd
│ │ ├── [ 353 May 28 10:58] sentry-init-quick-reference-android-flow.mmd
│ │ ├── [3.4K May 28 10:57] sentry-initialization-flow-android-initialization.mmd
│ │ ├── [1.1K May 28 10:57] sentry-initialization-flow-client-creation.mmd
│ │ ├── [1.2K May 28 10:58] sentry-initialization-flow-configuration-loading.mmd
│ │ ├── [3.7K May 28 10:56] sentry-initialization-flow-core-initialization.mmd
│ │ ├── [1.6K May 28 10:57] sentry-initialization-flow-integration-registration.mmd
│ │ ├── [1.0K May 28 10:58] sentry-startup-monitoring-time-measurement.mmd
│ │ └── [ 448 May 28 11:04] svg
│ │ ├── [ 26K May 28 11:04] sentry-crash-monitoring-anr-detection.svg
│ │ ├── [ 25K May 28 11:04] sentry-crash-monitoring-crash-recovery.svg
│ │ ├── [ 26K May 28 11:04] sentry-crash-monitoring-exception-capture.svg
│ │ ├── [ 26K May 28 11:04] sentry-crash-monitoring-native-crash.svg
│ │ ├── [ 25K May 28 11:04] sentry-crash-monitoring-startup-crash.svg
│ │ ├── [ 22K May 28 11:04] sentry-init-quick-reference-android-flow.svg
│ │ ├── [ 46K May 28 11:04] sentry-initialization-flow-android-initialization.svg
│ │ ├── [ 28K May 28 11:04] sentry-initialization-flow-client-creation.svg
│ │ ├── [ 33K May 28 11:04] sentry-initialization-flow-configuration-loading.svg
│ │ ├── [ 53K May 28 11:04] sentry-initialization-flow-core-initialization.svg
│ │ ├── [ 30K May 28 11:04] sentry-initialization-flow-integration-registration.svg
│ │ └── [ 28K May 28 11:04] sentry-startup-monitoring-time-measurement.svg
│ ├── [ 128 May 28 11:09] rules
│ │ ├── [6.8K May 28 11:15] .cursorrules
│ │ └── [2.0K May 28 11:11] README.md
│ ├── [ 53K May 28 10:37] sentry-crash-monitoring.md
│ ├── [3.7K May 27 12:33] sentry-init-quick-reference.md
│ ├── [9.1K May 27 12:33] sentry-initialization-details.md
│ ├── [ 12K May 28 10:49] sentry-initialization-flow.md
│ ├── [ 30K May 27 19:43] sentry-network-monitoring.md
│ ├── [ 35K May 27 19:40] sentry-profiling-analysis.md
│ ├── [ 23K May 27 19:37] sentry-replay-analysis.md
│ ├── [ 26K May 27 19:34] sentry-session-management.md
│ ├── [ 22K May 27 19:15] sentry-startup-monitoring.md
│ └── [ 23K May 27 19:28] sentry-ui-jank-monitoring.md
├── [ 11K May 27 19:34] build.gradle.kts
├── [ 256 Feb 18 16:15] buildSrc
│ ├── [ 96 Feb 18 16:15] .kotlin
│ │ └── [ 64 May 27 20:19] sessions
│ ├── [ 237 Feb 18 16:11] build.gradle.kts
│ ├── [ 37 Feb 18 16:11] settings.gradle.kts
│ └── [ 96 Feb 18 16:11] src
│ └── [ 96 Feb 18 16:11] main
│ └── [ 128 May 27 19:34] java
│ ├── [ 13K May 27 19:34] Config.kt
│ └── [3.4K Feb 18 16:11] Publication.kt
├── [ 355 May 27 19:34] codecov.yml
├── [2.4K Feb 18 16:11] debug.keystore
├── [ 33 Feb 18 16:11] detekt.yml
├── [ 96 Feb 18 16:11] docs
│ └── [ 12K Feb 18 16:11] stylesheet.css
├── [ 128 May 27 19:34] gradle
│ ├── [5.0K May 27 19:34] libs.versions.toml
│ └── [ 128 May 27 19:34] wrapper
│ └── [ 253 May 27 19:34] gradle-wrapper.properties
├── [1.8K May 27 19:34] gradle.properties
├── [8.5K May 27 19:34] gradlew
├── [2.9K May 27 19:34] gradlew.bat
├── [ 96 Feb 18 16:11] hooks
│ └── [ 315 Feb 18 16:11] pre-commit
├── [ 346 Feb 18 16:15] local.properties
├── [200K May 28 11:22] project_structure.txt
├── [ 0 May 28 11:22] project_structure_detailed.txt
├── [ 352 May 27 19:34] scripts
│ ├── [ 475 Feb 18 16:11] bump-version.sh
│ ├── [ 483 Feb 18 16:11] commit-formatted-code.sh
│ ├── [9.8K Feb 18 16:11] mvnw
│ ├── [6.5K Feb 18 16:11] mvnw.cmd
│ ├── [ 449 Feb 18 16:11] settings.xml
│ ├── [1.1K Feb 18 16:11] test-ui-critical.sh
│ ├── [3.1K May 27 19:34] toggle-codec-logs.sh
│ ├── [1.2K Feb 18 16:11] update-gradle.sh
│ └── [ 617 Feb 18 16:11] update-sentry-native-ndk.sh
├── [ 192 May 27 19:34] sentry
│ ├── [ 96 May 27 19:34] api
│ │ └── [351K May 27 19:34] sentry.api
│ ├── [2.7K May 27 19:34] build.gradle.kts
│ └── [ 128 Feb 18 16:11] src
│ ├── [ 128 Feb 18 16:11] main
│ │ ├── [ 96 Feb 18 16:11] java
│ │ │ └── [ 96 Feb 18 16:11] io
│ │ │ └── [7.1K May 27 19:34] sentry
│ │ │ ├── [ 809 Feb 18 16:11] AsyncHttpTransportFactory.java
│ │ │ ├── [ 14K May 27 19:34] Attachment.java
│ │ │ ├── [ 314 Feb 18 16:11] BackfillingEventProcessor.java
│ │ │ ├── [ 21K May 27 19:34] Baggage.java
│ │ │ ├── [1.0K Feb 18 16:11] BaggageHeader.java
│ │ │ ├── [ 25K May 27 19:34] Breadcrumb.java
│ │ │ ├── [7.4K Feb 18 16:11] CheckIn.java
│ │ │ ├── [ 329 Feb 18 16:11] CheckInStatus.java
│ │ │ ├── [ 11K Feb 18 16:11] CircularFifoQueue.java
│ │ │ ├── [8.3K May 27 19:34] CombinedContextsView.java
│ │ │ ├── [ 14K May 27 19:34] CombinedScopeView.java
│ │ │ ├── [1.2K May 27 19:34] CompositePerformanceCollector.java
│ │ │ ├── [ 579 May 27 19:34] CpuCollectionData.java
│ │ │ ├── [ 796 Feb 18 16:11] CustomSamplingContext.java
│ │ │ ├── [ 727 May 27 19:34] DataCategory.java
│ │ │ ├── [4.7K May 27 19:34] DateUtils.java
│ │ │ ├── [2.2K Feb 18 16:11] DeduplicateMultithreadedEventProcessor.java
│ │ │ ├── [7.8K May 27 19:34] DefaultCompositePerformanceCollector.java
│ │ │ ├── [1.0K Feb 18 16:11] DefaultScopesStorage.java
│ │ │ ├── [1.2K May 27 19:34] DefaultSpanFactory.java
│ │ │ ├── [ 530 May 27 19:34] DefaultVersionDetector.java
│ │ │ ├── [2.8K Feb 18 16:11] DiagnosticLogger.java
│ │ │ ├── [5.7K Feb 18 16:11] DirectoryProcessor.java
│ │ │ ├── [2.4K Feb 18 16:11] DisabledQueue.java
│ │ │ ├── [2.6K Feb 18 16:11] Dsn.java
│ │ │ ├── [1.1K May 27 19:34] DsnUtil.java
│ │ │ ├── [2.2K Feb 18 16:11] DuplicateEventDetectionEventProcessor.java
│ │ │ ├── [5.3K Feb 18 16:11] EnvelopeReader.java
│ │ │ ├── [4.6K Feb 18 16:11] EnvelopeSender.java
│ │ │ ├── [1.5K Feb 18 16:11] EventProcessor.java
│ │ │ ├── [ 424 Feb 18 16:11] ExperimentalOptions.java
│ │ │ ├── [ 18K May 27 19:34] ExternalOptions.java
│ │ │ ├── [1.3K May 27 19:34] FilterString.java
│ │ │ ├── [1.1K Feb 18 16:11] FullyDisplayedReporter.java
│ │ │ ├── [5.0K Feb 18 16:11] Hint.java
│ │ │ ├── [5.1K May 27 19:34] HostnameCache.java
│ │ │ ├── [ 753 Feb 18 16:11] HttpStatusCodeRange.java
│ │ │ ├── [9.7K May 27 19:34] HubAdapter.java
│ │ │ ├── [9.0K May 27 19:34] HubScopesWrapper.java
│ │ │ ├── [1.4K Feb 18 16:11] IConnectionStatusProvider.java
│ │ │ ├── [ 764 May 27 19:34] IContinuousProfiler.java
│ │ │ ├── [ 282 Feb 18 16:11] IEnvelopeReader.java
│ │ │ ├── [ 170 Feb 18 16:11] IEnvelopeSender.java
│ │ │ ├── [ 199 Feb 18 16:11] IHub.java
│ │ │ ├── [1.5K Feb 18 16:11] ILogger.java
│ │ │ ├── [ 374 Feb 18 16:11] IMemoryCollector.java
│ │ │ ├── [ 780 Feb 18 16:11] IOptionsObserver.java
│ │ │ ├── [ 209 Feb 18 16:11] IPerformanceCollector.java
│ │ │ ├── [ 828 Feb 18 16:11] IPerformanceContinuousCollector.java
│ │ │ ├── [ 405 Feb 18 16:11] IPerformanceSnapshotCollector.java
│ │ │ ├── [ 490 May 27 19:34] IReplayApi.java
│ │ │ ├── [9.4K May 27 19:34] IScope.java
│ │ │ ├── [1.3K Feb 18 16:11] IScopeObserver.java
│ │ │ ├── [ 22K May 27 19:34] IScopes.java
│ │ │ ├── [ 342 Feb 18 16:11] IScopesStorage.java
│ │ │ ├── [9.9K May 27 19:34] ISentryClient.java
│ │ │ ├── [1.3K Feb 18 16:11] ISentryExecutorService.java
│ │ │ ├── [ 177 Feb 18 16:11] ISentryLifecycleToken.java
│ │ │ ├── [1.1K Feb 18 16:11] ISerializer.java
│ │ │ ├── [ 272 May 27 19:34] ISocketTagger.java
│ │ │ ├── [6.4K May 27 19:34] ISpan.java
│ │ │ ├── [ 633 May 27 19:34] ISpanFactory.java
│ │ │ ├── [2.5K Feb 18 16:11] ITransaction.java
│ │ │ ├── [ 702 Feb 18 16:11] ITransactionProfiler.java
│ │ │ ├── [ 604 Feb 18 16:11] ITransportFactory.java
│ │ │ ├── [ 281 May 27 19:34] IVersionDetector.java
│ │ │ ├── [ 160 Feb 18 16:11] InitPriority.java
│ │ │ ├── [ 217 Feb 18 16:11] Instrumenter.java
│ │ │ ├── [ 448 Feb 18 16:11] Integration.java
│ │ │ ├── [ 592 Feb 18 16:11] IpAddressUtils.java
│ │ │ ├── [ 665 May 27 19:34] JavaMemoryCollector.java
│ │ │ ├── [ 268 Feb 18 16:11] JsonDeserializer.java
│ │ │ ├── [5.4K Feb 18 16:11] JsonObjectDeserializer.java
│ │ │ ├── [7.3K Feb 18 16:11] JsonObjectReader.java
│ │ │ ├── [4.8K Feb 18 16:11] JsonObjectSerializer.java
│ │ │ ├── [3.0K May 27 19:34] JsonObjectWriter.java
│ │ │ ├── [5.3K Feb 18 16:11] JsonReflectionObjectSerializer.java
│ │ │ ├── [ 239 Feb 18 16:11] JsonSerializable.java
│ │ │ ├── [ 13K May 27 19:34] JsonSerializer.java
│ │ │ ├── [ 290 Feb 18 16:11] JsonUnknown.java
│ │ │ ├── [9.5K May 27 19:34] MainEventProcessor.java
│ │ │ ├── [ 642 May 27 19:34] ManifestVersionDetector.java
│ │ │ ├── [3.4K Feb 18 16:11] MeasurementUnit.java
│ │ │ ├── [ 882 May 27 19:34] MemoryCollectionData.java
│ │ │ ├── [6.2K Feb 18 16:11] MonitorConfig.java
│ │ │ ├── [2.9K Feb 18 16:11] MonitorContexts.java
│ │ │ ├── [4.8K Feb 18 16:11] MonitorSchedule.java
│ │ │ ├── [ 335 Feb 18 16:11] MonitorScheduleType.java
│ │ │ ├── [ 368 Feb 18 16:11] MonitorScheduleUnit.java
│ │ │ ├── [1020 May 27 19:34] NoOpCompositePerformanceCollector.java
│ │ │ ├── [ 702 Feb 18 16:11] NoOpConnectionStatusProvider.java
│ │ │ ├── [ 902 May 27 19:34] NoOpContinuousProfiler.java
│ │ │ ├── [ 546 Feb 18 16:11] NoOpEnvelopeReader.java
│ │ │ ├── [7.7K May 27 19:34] NoOpHub.java
│ │ │ ├── [ 858 Feb 18 16:11] NoOpLogger.java
│ │ │ ├── [ 579 Feb 18 16:11] NoOpReplayBreadcrumbConverter.java
│ │ │ ├── [1.2K May 27 19:34] NoOpReplayController.java
│ │ │ ├── [6.4K May 27 19:34] NoOpScope.java
│ │ │ ├── [7.7K May 27 19:34] NoOpScopes.java
│ │ │ ├── [ 355 Feb 18 16:11] NoOpScopesLifecycleToken.java
│ │ │ ├── [ 613 Feb 18 16:11] NoOpScopesStorage.java
│ │ │ ├── [2.6K May 27 19:34] NoOpSentryClient.java
│ │ │ ├── [1007 Feb 18 16:11] NoOpSentryExecutorService.java
│ │ │ ├── [1.3K Feb 18 16:11] NoOpSerializer.java
│ │ │ ├── [ 452 May 27 19:34] NoOpSocketTagger.java
│ │ │ ├── [4.3K May 27 19:34] NoOpSpan.java
│ │ │ ├── [ 964 May 27 19:34] NoOpSpanFactory.java
│ │ │ ├── [5.7K May 27 19:34] NoOpTransaction.java
│ │ │ ├── [ 892 Feb 18 16:11] NoOpTransactionProfiler.java
│ │ │ ├── [ 667 Feb 18 16:11] NoOpTransportFactory.java
│ │ │ ├── [ 365 May 27 19:34] NoopVersionDetector.java
│ │ │ ├── [2.7K Feb 18 16:11] ObjectReader.java
│ │ │ ├── [1.2K May 27 19:34] ObjectWriter.java
│ │ │ ├── [ 723 Feb 18 16:11] OptionsContainer.java
│ │ │ ├── [ 11K Feb 18 16:11] OutboxSender.java
│ │ │ ├── [ 935 Feb 18 16:11] PerformanceCollectionData.java
│ │ │ ├── [5.4K Feb 18 16:11] PreviousSessionFinalizer.java
│ │ │ ├── [ 11K May 27 19:34] ProfileChunk.java
│ │ │ ├── [3.3K May 27 19:34] ProfileContext.java
│ │ │ ├── [ 522 May 27 19:34] ProfileLifecycle.java
│ │ │ ├── [ 22K May 27 19:34] ProfilingTraceData.java
│ │ │ ├── [7.7K Feb 18 16:11] ProfilingTransactionData.java
│ │ │ ├── [4.5K May 27 19:34] PropagationContext.java
│ │ │ ├── [ 318 Feb 18 16:11] ReplayBreadcrumbConverter.java
│ │ │ ├── [ 637 May 27 19:34] ReplayController.java
│ │ │ ├── [8.5K Feb 18 16:11] ReplayRecording.java
│ │ │ ├── [1007 Feb 18 16:11] RequestDetails.java
│ │ │ ├── [2.0K May 27 19:34] RequestDetailsResolver.java
│ │ │ ├── [2.0K May 27 19:34] SamplingContext.java
│ │ │ ├── [ 31K May 27 19:34] Scope.java
│ │ │ ├── [ 560 Feb 18 16:11] ScopeBindingMode.java
│ │ │ ├── [ 133 Feb 18 16:11] ScopeCallback.java
│ │ │ ├── [1.5K Feb 18 16:11] ScopeObserverAdapter.java
│ │ │ ├── [ 92 Feb 18 16:11] ScopeType.java
│ │ │ ├── [ 39K May 27 19:34] Scopes.java
│ │ │ ├── [9.6K May 27 19:34] ScopesAdapter.java
│ │ │ ├── [1.7K Feb 18 16:11] ScopesStorageFactory.java
│ │ │ ├── [6.6K Feb 18 16:11] SendCachedEnvelopeFireAndForgetIntegration.java
│ │ │ ├── [1.6K Feb 18 16:11] SendFireAndForgetEnvelopeSender.java
│ │ │ ├── [1.7K Feb 18 16:11] SendFireAndForgetOutboxSender.java
│ │ │ ├── [ 45K May 27 19:34] Sentry.java
│ │ │ ├── [ 12K May 27 19:34] SentryAppStartProfilingOptions.java
│ │ │ ├── [1.6K May 27 19:34] SentryAttribute.java
│ │ │ ├── [ 252 May 27 19:34] SentryAttributeType.java
│ │ │ ├── [1.7K May 27 19:34] SentryAttributes.java
│ │ │ ├── [1007 Feb 18 16:11] SentryAutoDateProvider.java
│ │ │ ├── [ 14K May 27 19:34] SentryBaseEvent.java
│ │ │ ├── [ 51K May 27 19:34] SentryClient.java
│ │ │ ├── [2.5K Feb 18 16:11] SentryCrashLastRunState.java
│ │ │ ├── [1.6K Feb 18 16:11] SentryDate.java
│ │ │ ├── [ 145 Feb 18 16:11] SentryDateProvider.java
│ │ │ ├── [3.3K Feb 18 16:11] SentryEnvelope.java
│ │ │ ├── [5.1K Feb 18 16:11] SentryEnvelopeHeader.java
│ │ │ ├── [ 23K May 27 19:34] SentryEnvelopeItem.java
│ │ │ ├── [7.3K May 27 19:34] SentryEnvelopeItemHeader.java
│ │ │ ├── [ 12K Feb 18 16:11] SentryEvent.java
│ │ │ ├── [7.8K Feb 18 16:11] SentryExceptionFactory.java
│ │ │ ├── [2.4K Feb 18 16:11] SentryExecutorService.java
│ │ │ ├── [ 671 Feb 18 16:11] SentryInstantDate.java
│ │ │ ├── [ 244 Feb 18 16:11] SentryInstantDateProvider.java
│ │ │ ├── [4.3K May 27 19:34] SentryIntegrationPackageStorage.java
│ │ │ ├── [2.1K May 27 19:34] SentryItemType.java
│ │ │ ├── [ 743 Feb 18 16:11] SentryLevel.java
│ │ │ ├── [5.1K Feb 18 16:11] SentryLockReason.java
│ │ │ ├── [6.6K May 27 19:34] SentryLogEvent.java
│ │ │ ├── [3.2K May 27 19:34] SentryLogEventAttributeValue.java
│ │ │ ├── [2.6K May 27 19:34] SentryLogEvents.java
│ │ │ ├── [ 990 May 27 19:34] SentryLogLevel.java
│ │ │ ├── [ 245 Feb 18 16:11] SentryLongDate.java
│ │ │ ├── [2.8K Feb 18 16:11] SentryNanotimeDate.java
│ │ │ ├── [ 247 Feb 18 16:11] SentryNanotimeDateProvider.java
│ │ │ ├── [ 864 Feb 18 16:11] SentryOpenTelemetryMode.java
│ │ │ ├── [103K May 27 19:34] SentryOptions.java
│ │ │ ├── [9.2K Feb 18 16:11] SentryReplayEvent.java
│ │ │ ├── [ 11K May 27 19:34] SentryReplayOptions.java
│ │ │ ├── [1.6K Feb 18 16:11] SentryRuntimeEventProcessor.java
│ │ │ ├── [1.5K Feb 18 16:11] SentrySpanStorage.java
│ │ │ ├── [4.8K Feb 18 16:11] SentryStackTraceFactory.java
│ │ │ ├── [5.5K Feb 18 16:11] SentryThreadFactory.java
│ │ │ ├── [1.7K Feb 18 16:11] SentryTraceHeader.java
│ │ │ ├── [ 32K May 27 19:34] SentryTracer.java
│ │ │ ├── [ 666 Feb 18 16:11] SentryUUID.java
│ │ │ ├── [ 537 Feb 18 16:11] SentryValues.java
│ │ │ ├── [2.6K May 27 19:34] SentryWrapper.java
│ │ │ ├── [ 16K Feb 18 16:11] Session.java
│ │ │ ├── [2.3K Feb 18 16:11] ShutdownHookIntegration.java
│ │ │ ├── [ 13K May 27 19:34] Span.java
│ │ │ ├── [ 14K May 27 19:34] SpanContext.java
│ │ │ ├── [1.2K May 27 19:34] SpanDataConvention.java
│ │ │ ├── [1.4K Feb 18 16:11] SpanFactoryFactory.java
│ │ │ ├── [ 314 Feb 18 16:11] SpanFinishedCallback.java
│ │ │ ├── [1.6K Feb 18 16:11] SpanId.java
│ │ │ ├── [2.3K Feb 18 16:11] SpanOptions.java
│ │ │ ├── [4.3K Feb 18 16:11] SpanStatus.java
│ │ │ ├── [4.9K May 27 19:34] SpotlightIntegration.java
│ │ │ ├── [2.7K Feb 18 16:11] Stack.java
│ │ │ ├── [6.8K Feb 18 16:11] SynchronizedCollection.java
│ │ │ ├── [4.4K Feb 18 16:11] SynchronizedQueue.java
│ │ │ ├── [2.6K Feb 18 16:11] SystemOutLogger.java
│ │ │ ├── [8.5K Feb 18 16:11] TraceContext.java
│ │ │ ├── [3.4K May 27 19:34] TracesSampler.java
│ │ │ ├── [2.0K Feb 18 16:11] TracesSamplingDecision.java
│ │ │ ├── [5.7K May 27 19:34] TransactionContext.java
│ │ │ ├── [ 332 Feb 18 16:11] TransactionFinishedCallback.java
│ │ │ ├── [5.4K Feb 18 16:11] TransactionOptions.java
│ │ │ ├── [5.3K Feb 18 16:11] TypeCheckHint.java
│ │ │ ├── [ 930 Feb 18 16:11] UncaughtExceptionHandler.java
│ │ │ ├── [7.1K Feb 18 16:11] UncaughtExceptionHandlerIntegration.java
│ │ │ ├── [5.5K Feb 18 16:11] UserFeedback.java
│ │ │ ├── [ 160 Feb 18 16:11] backpressure
│ │ │ │ ├── [2.6K Feb 18 16:11] BackpressureMonitor.java
│ │ │ │ ├── [ 203 Feb 18 16:11] IBackpressureMonitor.java
│ │ │ │ └── [ 510 Feb 18 16:11] NoOpBackpressureMonitor.java
│ │ │ ├── [ 288 May 27 19:34] cache
│ │ │ │ ├── [9.2K Feb 18 16:11] CacheStrategy.java
│ │ │ │ ├── [3.6K May 27 19:34] CacheUtils.java
│ │ │ │ ├── [ 16K Feb 18 16:11] EnvelopeCache.java
│ │ │ │ ├── [ 409 Feb 18 16:11] IEnvelopeCache.java
│ │ │ │ ├── [3.2K Feb 18 16:11] PersistingOptionsObserver.java
│ │ │ │ ├── [ 10K May 27 19:34] PersistingScopeObserver.java
│ │ │ │ └── [ 192 May 27 19:34] tape
│ │ │ │ ├── [1021 May 27 19:34] EmptyObjectQueue.java
│ │ │ │ ├── [3.9K May 27 19:34] FileObjectQueue.java
│ │ │ │ ├── [3.5K May 27 19:34] ObjectQueue.java
│ │ │ │ └── [ 26K May 27 19:34] QueueFile.java
│ │ │ ├── [ 352 May 27 19:34] clientreport
│ │ │ │ ├── [2.0K Feb 18 16:11] AtomicClientReportStorage.java
│ │ │ │ ├── [3.8K Feb 18 16:11] ClientReport.java
│ │ │ │ ├── [ 949 Feb 18 16:11] ClientReportKey.java
│ │ │ │ ├── [6.2K May 27 19:34] ClientReportRecorder.java
│ │ │ │ ├── [ 587 Feb 18 16:11] DiscardReason.java
│ │ │ │ ├── [4.1K Feb 18 16:11] DiscardedEvent.java
│ │ │ │ ├── [ 808 Feb 18 16:11] IClientReportRecorder.java
│ │ │ │ ├── [ 258 Feb 18 16:11] IClientReportStorage.java
│ │ │ │ └── [1.0K Feb 18 16:11] NoOpClientReportRecorder.java
│ │ │ ├── [ 384 May 27 19:34] config
│ │ │ │ ├── [2.2K Feb 18 16:11] AbstractPropertiesProvider.java
│ │ │ │ ├── [1.7K Feb 18 16:11] ClasspathPropertiesLoader.java
│ │ │ │ ├── [1.2K Feb 18 16:11] CompositePropertiesProvider.java
│ │ │ │ ├── [2.0K Feb 18 16:11] EnvironmentVariablePropertiesProvider.java
│ │ │ │ ├── [1.2K Feb 18 16:11] FilesystemPropertiesLoader.java
│ │ │ │ ├── [ 288 Feb 18 16:11] PropertiesLoader.java
│ │ │ │ ├── [3.2K May 27 19:34] PropertiesProvider.java
│ │ │ │ ├── [2.5K Feb 18 16:11] PropertiesProviderFactory.java
│ │ │ │ ├── [ 364 Feb 18 16:11] SimplePropertiesProvider.java
│ │ │ │ └── [ 362 Feb 18 16:11] SystemPropertyPropertiesProvider.java
│ │ │ ├── [ 192 Feb 18 16:11] exception
│ │ │ │ ├── [2.5K Feb 18 16:11] ExceptionMechanismException.java
│ │ │ │ ├── [ 970 Feb 18 16:11] InvalidSentryTraceHeaderException.java
│ │ │ │ ├── [ 542 Feb 18 16:11] SentryEnvelopeException.java
│ │ │ │ └── [ 425 Feb 18 16:11] SentryHttpClientException.java
│ │ │ ├── [ 608 Feb 18 16:11] hints
│ │ │ │ ├── [ 487 Feb 18 16:11] AbnormalExit.java
│ │ │ │ ├── [ 224 Feb 18 16:11] ApplyScopeData.java
│ │ │ │ ├── [ 253 Feb 18 16:11] Backfillable.java
│ │ │ │ ├── [1.1K Feb 18 16:11] BlockingFlushHint.java
│ │ │ │ ├── [ 123 Feb 18 16:11] Cached.java
│ │ │ │ ├── [ 314 Feb 18 16:11] DiskFlushNotification.java
│ │ │ │ ├── [ 180 Feb 18 16:11] Enqueable.java
│ │ │ │ ├── [ 246 Feb 18 16:11] EventDropReason.java
│ │ │ │ ├── [ 138 Feb 18 16:11] Flushable.java
│ │ │ │ ├── [ 163 Feb 18 16:11] Resettable.java
│ │ │ │ ├── [ 111 Feb 18 16:11] Retryable.java
│ │ │ │ ├── [ 111 Feb 18 16:11] SessionEnd.java
│ │ │ │ ├── [ 85 Feb 18 16:11] SessionEndHint.java
│ │ │ │ ├── [ 115 Feb 18 16:11] SessionStart.java
│ │ │ │ ├── [ 89 Feb 18 16:11] SessionStartHint.java
│ │ │ │ ├── [ 123 Feb 18 16:11] SubmissionResult.java
│ │ │ │ └── [ 159 Feb 18 16:11] TransactionEnd.java
│ │ │ ├── [ 96 Feb 18 16:11] instrumentation
│ │ │ │ └── [ 288 May 27 19:34] file
│ │ │ │ ├── [4.8K Feb 18 16:11] FileIOSpanManager.java
│ │ │ │ ├── [ 713 Feb 18 16:11] FileInputStreamInitData.java
│ │ │ │ ├── [ 796 Feb 18 16:11] FileOutputStreamInitData.java
│ │ │ │ ├── [5.8K May 27 19:34] SentryFileInputStream.java
│ │ │ │ ├── [7.0K May 27 19:34] SentryFileOutputStream.java
│ │ │ │ ├── [ 852 Feb 18 16:11] SentryFileReader.java
│ │ │ │ └── [1.2K Feb 18 16:11] SentryFileWriter.java
│ │ │ ├── [ 256 May 27 19:34] internal
│ │ │ │ ├── [4.7K May 27 19:34] ManifestVersionReader.java
│ │ │ │ ├── [ 160 Feb 18 16:11] debugmeta
│ │ │ │ │ ├── [ 285 Feb 18 16:11] IDebugMetaLoader.java
│ │ │ │ │ ├── [ 554 Feb 18 16:11] NoOpDebugMetaLoader.java
│ │ │ │ │ └── [2.2K Feb 18 16:11] ResourcesDebugMetaLoader.java
│ │ │ │ ├── [ 96 Feb 18 16:11] eventprocessor
│ │ │ │ │ └── [ 879 Feb 18 16:11] EventProcessorAndOrder.java
│ │ │ │ ├── [ 128 Feb 18 16:11] gestures
│ │ │ │ │ ├── [ 256 Feb 18 16:11] GestureTargetLocator.java
│ │ │ │ │ └── [1.8K Feb 18 16:11] UiElement.java
│ │ │ │ ├── [ 256 May 27 19:34] modules
│ │ │ │ │ ├── [ 962 Feb 18 16:11] CompositeModulesLoader.java
│ │ │ │ │ ├── [ 257 Feb 18 16:11] IModulesLoader.java
│ │ │ │ │ ├── [3.2K Feb 18 16:11] ManifestModulesLoader.java
│ │ │ │ │ ├── [2.3K May 27 19:34] ModulesLoader.java
│ │ │ │ │ ├── [ 452 Feb 18 16:11] NoOpModulesLoader.java
│ │ │ │ │ └── [1.5K Feb 18 16:11] ResourcesModulesLoader.java
│ │ │ │ └── [ 96 Feb 18 16:11] viewhierarchy
│ │ │ │ └── [ 565 Feb 18 16:11] ViewHierarchyExporter.java
│ │ │ ├── [ 288 May 27 19:34] logger
│ │ │ │ ├── [1.1K May 27 19:34] ILoggerApi.java
│ │ │ │ ├── [ 226 May 27 19:34] ILoggerBatchProcessor.java
│ │ │ │ ├── [8.3K May 27 19:34] LoggerApi.java
│ │ │ │ ├── [3.5K May 27 19:34] LoggerBatchProcessor.java
│ │ │ │ ├── [1.6K May 27 19:34] NoOpLoggerApi.java
│ │ │ │ ├── [ 639 May 27 19:34] NoOpLoggerBatchProcessor.java
│ │ │ │ └── [1.1K May 27 19:34] SentryLogParameters.java
│ │ │ ├── [ 96 Feb 18 16:11] opentelemetry
│ │ │ │ └── [2.6K Feb 18 16:11] OpenTelemetryUtil.java
│ │ │ ├── [ 128 May 27 19:34] profilemeasurements
│ │ │ │ ├── [4.7K Feb 18 16:11] ProfileMeasurement.java
│ │ │ │ └── [5.0K May 27 19:34] ProfileMeasurementValue.java
│ │ │ ├── [1.1K May 27 19:34] protocol
│ │ │ │ ├── [ 12K Feb 18 16:11] App.java
│ │ │ │ ├── [3.6K Feb 18 16:11] Browser.java
│ │ │ │ ├── [ 11K May 27 19:34] Contexts.java
│ │ │ │ ├── [ 12K Feb 18 16:11] DebugImage.java
│ │ │ │ ├── [4.8K May 27 19:34] DebugMeta.java
│ │ │ │ ├── [ 26K Feb 18 16:11] Device.java
│ │ │ │ ├── [6.9K May 27 19:34] Feedback.java
│ │ │ │ ├── [5.0K Feb 18 16:11] Geo.java
│ │ │ │ ├── [7.9K Feb 18 16:11] Gpu.java
│ │ │ │ ├── [4.1K Feb 18 16:11] MeasurementValue.java
│ │ │ │ ├── [9.4K Feb 18 16:11] Mechanism.java
│ │ │ │ ├── [4.9K Feb 18 16:11] Message.java
│ │ │ │ ├── [ 1 Feb 18 16:11] MetricSummary.java
│ │ │ │ ├── [6.5K Feb 18 16:11] OperatingSystem.java
│ │ │ │ ├── [ 12K Feb 18 16:11] Request.java
│ │ │ │ ├── [5.6K Feb 18 16:11] Response.java
│ │ │ │ ├── [4.4K Feb 18 16:11] SdkInfo.java
│ │ │ │ ├── [8.6K Feb 18 16:11] SdkVersion.java
│ │ │ │ ├── [7.2K Feb 18 16:11] SentryException.java
│ │ │ │ ├── [2.7K Feb 18 16:11] SentryId.java
│ │ │ │ ├── [4.2K Feb 18 16:11] SentryPackage.java
│ │ │ │ ├── [4.1K Feb 18 16:11] SentryRuntime.java
│ │ │ │ ├── [ 11K Feb 18 16:11] SentrySpan.java
│ │ │ │ ├── [ 15K May 27 19:34] SentryStackFrame.java
│ │ │ │ ├── [5.9K Feb 18 16:11] SentryStackTrace.java
│ │ │ │ ├── [9.6K Feb 18 16:11] SentryThread.java
│ │ │ │ ├── [ 11K May 27 19:34] SentryTransaction.java
│ │ │ │ ├── [3.5K May 27 19:34] Spring.java
│ │ │ │ ├── [2.5K Feb 18 16:11] TransactionInfo.java
│ │ │ │ ├── [1.3K Feb 18 16:11] TransactionNameSource.java
│ │ │ │ ├── [ 11K Feb 18 16:11] User.java
│ │ │ │ ├── [3.1K Feb 18 16:11] ViewHierarchy.java
│ │ │ │ └── [6.6K Feb 18 16:11] ViewHierarchyNode.java
│ │ │ ├── [ 384 Feb 18 16:11] rrweb
│ │ │ │ ├── [9.4K Feb 18 16:11] RRWebBreadcrumbEvent.java
│ │ │ │ ├── [2.4K Feb 18 16:11] RRWebEvent.java
│ │ │ │ ├── [ 883 Feb 18 16:11] RRWebEventType.java
│ │ │ │ ├── [2.5K Feb 18 16:11] RRWebIncrementalSnapshotEvent.java
│ │ │ │ ├── [7.4K Feb 18 16:11] RRWebInteractionEvent.java
│ │ │ │ ├── [8.5K Feb 18 16:11] RRWebInteractionMoveEvent.java
│ │ │ │ ├── [5.5K Feb 18 16:11] RRWebMetaEvent.java
│ │ │ │ ├── [7.3K Feb 18 16:11] RRWebOptionsEvent.java
│ │ │ │ ├── [8.6K Feb 18 16:11] RRWebSpanEvent.java
│ │ │ │ └── [ 13K Feb 18 16:11] RRWebVideoEvent.java
│ │ │ ├── [ 576 May 27 19:34] transport
│ │ │ │ ├── [ 13K Feb 18 16:11] AsyncHttpTransport.java
│ │ │ │ ├── [ 543 Feb 18 16:11] AuthenticatorWrapper.java
│ │ │ │ ├── [ 469 Feb 18 16:11] CurrentDateProvider.java
│ │ │ │ ├── [9.6K May 27 19:34] HttpConnection.java
│ │ │ │ ├── [ 315 Feb 18 16:11] ICurrentDateProvider.java
│ │ │ │ ├── [1009 May 27 19:34] ITransport.java
│ │ │ │ ├── [ 607 Feb 18 16:11] ITransportGate.java
│ │ │ │ ├── [ 722 Feb 18 16:11] NoOpEnvelopeCache.java
│ │ │ │ ├── [ 910 Feb 18 16:11] NoOpTransport.java
│ │ │ │ ├── [ 352 Feb 18 16:11] NoOpTransportGate.java
│ │ │ │ ├── [1.0K Feb 18 16:11] ProxyAuthenticator.java
│ │ │ │ ├── [4.2K Feb 18 16:11] QueuedThreadPoolExecutor.java
│ │ │ │ ├── [ 13K May 27 19:34] RateLimiter.java
│ │ │ │ ├── [7.9K Feb 18 16:11] ReusableCountLatch.java
│ │ │ │ ├── [1.2K Feb 18 16:11] StdoutTransport.java
│ │ │ │ └── [1.9K Feb 18 16:11] TransportResult.java
│ │ │ ├── [1.2K May 27 19:34] util
│ │ │ │ ├── [ 750 Feb 18 16:11] AutoClosableReentrantLock.java
│ │ │ │ ├── [4.8K Feb 18 16:11] CheckInUtils.java
│ │ │ │ ├── [ 747 May 27 19:34] ClassLoaderUtils.java
│ │ │ │ ├── [6.1K May 27 19:34] CollectionUtils.java
│ │ │ │ ├── [2.0K Feb 18 16:11] DebugMetaPropertiesApplier.java
│ │ │ │ ├── [1.7K Feb 18 16:11] ErrorUtils.java
│ │ │ │ ├── [ 775 Feb 18 16:11] EventProcessorUtils.java
│ │ │ │ ├── [1003 Feb 18 16:11] ExceptionUtils.java
│ │ │ │ ├── [3.9K Feb 18 16:11] FileUtils.java
│ │ │ │ ├── [4.3K Feb 18 16:11] HintUtils.java
│ │ │ │ ├── [4.4K Feb 18 16:11] HttpUtils.java
│ │ │ │ ├── [1.7K May 27 19:34] InitUtil.java
│ │ │ │ ├── [ 377 Feb 18 16:11] IntegrationUtils.java
│ │ │ │ ├── [2.2K Feb 18 16:11] JsonSerializationUtils.java
│ │ │ │ ├── [1.8K Feb 18 16:11] LazyEvaluator.java
│ │ │ │ ├── [ 454 Feb 18 16:11] LifecycleHelper.java
│ │ │ │ ├── [1.5K May 27 19:34] LoadClass.java
│ │ │ │ ├── [ 631 Feb 18 16:11] LogUtils.java
│ │ │ │ ├── [ 11K Feb 18 16:11] MapObjectReader.java
│ │ │ │ ├── [8.0K May 27 19:34] MapObjectWriter.java
│ │ │ │ ├── [ 659 Feb 18 16:11] Objects.java
│ │ │ │ ├── [ 476 Feb 18 16:11] Pair.java
│ │ │ │ ├── [1.3K Feb 18 16:11] Platform.java
│ │ │ │ ├── [ 849 Feb 18 16:11] PropagationTargetsUtils.java
│ │ │ │ ├── [ 18K Feb 18 16:11] Random.java
│ │ │ │ ├── [2.3K May 27 19:34] SampleRateUtils.java
│ │ │ │ ├── [2.2K May 27 19:34] ScopesUtil.java
│ │ │ │ ├── [1.2K Feb 18 16:11] SentryRandom.java
│ │ │ │ ├── [2.6K Feb 18 16:11] SpanUtils.java
│ │ │ │ ├── [7.5K May 27 19:34] StringUtils.java
│ │ │ │ ├── [7.8K May 27 19:34] TracingUtils.java
│ │ │ │ ├── [2.5K Feb 18 16:11] UUIDGenerator.java
│ │ │ │ ├── [6.3K Feb 18 16:11] UUIDStringUtils.java
│ │ │ │ ├── [3.4K May 27 19:34] UrlUtils.java
│ │ │ │ └── [ 160 May 27 19:34] thread
│ │ │ │ ├── [1.2K May 27 19:34] IThreadChecker.java
│ │ │ │ ├── [ 898 May 27 19:34] NoOpThreadChecker.java
│ │ │ │ └── [1.5K May 27 19:34] ThreadChecker.java
│ │ │ └── [ 128 Feb 18 16:11] vendor
│ │ │ ├── [ 24K Feb 18 16:11] Base64.java
│ │ │ └── [ 160 Feb 18 16:11] gson
│ │ │ ├── [ 11K Feb 18 16:11] LICENSE
│ │ │ ├── [ 96 Feb 18 16:11] internal
│ │ │ │ └── [ 96 Feb 18 16:11] bind
│ │ │ │ └── [ 96 Feb 18 16:11] util
│ │ │ │ └── [ 14K Feb 18 16:11] ISO8601Utils.java
│ │ │ └── [ 224 May 27 19:34] stream
│ │ │ ├── [ 49K Feb 18 16:11] JsonReader.java
│ │ │ ├── [2.1K Feb 18 16:11] JsonScope.java
│ │ │ ├── [2.2K Feb 18 16:11] JsonToken.java
│ │ │ ├── [ 19K May 27 19:34] JsonWriter.java
│ │ │ └── [1.7K Feb 18 16:11] MalformedJsonException.java
│ │ └── [ 96 Feb 18 16:11] resources
│ │ └── [ 96 Feb 18 16:11] META-INF
│ │ └── [ 96 Feb 18 16:11] native-image
│ │ └── [ 96 Feb 18 16:11] io.sentry
│ │ └── [ 96 Feb 18 16:11] sentry
│ │ └── [ 36 Feb 18 16:11] native-image.properties
│ └── [ 128 Feb 18 16:11] test
│ ├── [ 96 Feb 18 16:11] java
│ │ └── [ 96 Feb 18 16:11] io
│ │ └── [3.6K May 27 19:34] sentry
│ │ ├── [4.1K Feb 18 16:11] AttachmentTest.kt
│ │ ├── [ 31K May 27 19:34] BaggageTest.kt
│ │ ├── [ 11K May 27 19:34] BreadcrumbTest.kt
│ │ ├── [ 77 Feb 18 16:11] CachedEvent.kt
│ │ ├── [6.7K May 27 19:34] CheckInSerializationTest.kt
│ │ ├── [ 21K May 27 19:34] CombinedContextsViewTest.kt
│ │ ├── [ 46K May 27 19:34] CombinedScopeViewTest.kt
│ │ ├── [ 150 Feb 18 16:11] CustomCachedApplyScopeDataHint.kt
│ │ ├── [ 145 Feb 18 16:11] CustomEventProcessor.kt
│ │ ├── [4.2K Feb 18 16:11] DateUtilsTest.kt
│ │ ├── [4.8K Feb 18 16:11] DeduplicateMultithreadedEventProcessorTest.kt
│ │ ├── [ 15K May 27 19:34] DefaultCompositePerformanceCollectorTest.kt
│ │ ├── [ 843 Feb 18 16:11] DenyReadFileSecurityManager.java
│ │ ├── [6.5K Feb 18 16:11] DiagnosticLoggerTest.kt
│ │ ├── [5.3K Feb 18 16:11] DirectoryProcessorTest.kt
│ │ ├── [2.8K Feb 18 16:11] DisabledQueueTest.kt
│ │ ├── [3.3K Feb 18 16:11] DsnTest.kt
│ │ ├── [1.7K May 27 19:34] DsnUtilTest.kt
│ │ ├── [3.4K Feb 18 16:11] DuplicateEventDetectionEventProcessorTest.kt
│ │ ├── [4.9K Feb 18 16:11] EnvelopeSenderTest.kt
│ │ ├── [ 14K May 27 19:34] ExternalOptionsTest.kt
│ │ ├── [ 737 Feb 18 16:11] FileFromResources.kt
│ │ ├── [ 705 May 27 19:34] FilterStringTest.kt
│ │ ├── [1.6K Feb 18 16:11] FullyDisplayedReporterTest.kt
│ │ ├── [1.3K Feb 18 16:11] HttpStatusCodeRangeTest.kt
│ │ ├── [9.6K May 27 19:34] HubAdapterTest.kt
│ │ ├── [ 447 Feb 18 16:11] InstrumenterTest.kt
│ │ ├── [ 540 Feb 18 16:11] IpAddressUtilsTest.kt
│ │ ├── [ 850 May 27 19:34] JavaMemoryCollectorTest.kt
│ │ ├── [5.8K Feb 18 16:11] JsonObjectDeserializerTest.kt
│ │ ├── [8.8K Feb 18 16:11] JsonObjectReaderTest.kt
│ │ ├── [9.4K Feb 18 16:11] JsonObjectSerializerTest.kt
│ │ ├── [ 12K Feb 18 16:11] JsonReflectionObjectSerializerTest.kt
│ │ ├── [3.1K Feb 18 16:11] JsonSerializerBenchmarkTests.kt
│ │ ├── [ 71K May 27 19:34] JsonSerializerTest.kt
│ │ ├── [8.5K Feb 18 16:11] JsonUnknownSerializationTest.kt
│ │ ├── [ 22K Feb 18 16:11] MainEventProcessorTest.kt
│ │ ├── [2.3K Feb 18 16:11] MeasurementUnitTest.kt
│ │ ├── [ 930 Feb 18 16:11] NoOpConnectionStatusProviderTest.kt
│ │ ├── [ 852 May 27 19:34] NoOpContinuousProfilerTest.kt
│ │ ├── [3.4K May 27 19:34] NoOpHubTest.kt
│ │ ├── [2.8K Feb 18 16:11] NoOpScopeTest.kt
│ │ ├── [2.7K May 27 19:34] NoOpSentryClientTest.kt
│ │ ├── [ 870 Feb 18 16:11] NoOpSentryExecutorServiceTest.kt
│ │ ├── [ 349 Feb 18 16:11] NoOpSerializerTest.kt
│ │ ├── [ 948 Feb 18 16:11] NoOpSpanTest.kt
│ │ ├── [ 736 Feb 18 16:11] NoOpTransactionProfilerTest.kt
│ │ ├── [1.5K Feb 18 16:11] NoOpTransactionTest.kt
│ │ ├── [ 321 Feb 18 16:11] OptionsContainerTest.kt
│ │ ├── [ 16K May 27 19:34] OutboxSenderTest.kt
│ │ ├── [1.7K May 27 19:34] PerformanceCollectionDataTest.kt
│ │ ├── [6.8K Feb 18 16:11] PreviousSessionFinalizerTest.kt
│ │ ├── [1.4K Feb 18 16:11] PropagationContextTest.kt
│ │ ├── [1.8K Feb 18 16:11] RequestDetailsResolverTest.kt
│ │ ├── [ 335 Feb 18 16:11] SampleDsn.kt
│ │ ├── [ 36K May 27 19:34] ScopeTest.kt
│ │ ├── [9.9K May 27 19:34] ScopesAdapterTest.kt
│ │ ├── [102K May 27 19:34] ScopesTest.kt
│ │ ├── [8.8K Feb 18 16:11] SendCachedEnvelopeFireAndForgetIntegrationTest.kt
│ │ ├── [ 817 Feb 18 16:11] SentryAutoDateProviderTest.kt
│ │ ├── [ 382 Feb 18 16:11] SentryBaseEventTypeTest.kt
│ │ ├── [129K May 27 19:34] SentryClientTest.kt
│ │ ├── [2.1K Feb 18 16:11] SentryCrashLastRunStateTest.kt
│ │ ├── [ 24K May 27 19:34] SentryEnvelopeItemTest.kt
│ │ ├── [7.4K Feb 18 16:11] SentryEnvelopeTest.kt
│ │ ├── [6.8K May 27 19:34] SentryEventTest.kt
│ │ ├── [ 17K Feb 18 16:11] SentryExceptionFactoryTest.kt
│ │ ├── [3.9K Feb 18 16:11] SentryExecutorServiceTest.kt
│ │ ├── [2.1K Feb 18 16:11] SentryInstantDateTest.kt
│ │ ├── [2.6K May 27 19:34] SentryIntegrationPackageStorageTest.kt
│ │ ├── [3.0K Feb 18 16:11] SentryLongDateTest.kt
│ │ ├── [2.5K Feb 18 16:11] SentryNanotimeDateTest.kt
│ │ ├── [ 318 Feb 18 16:11] SentryOptionsManipulator.kt
│ │ ├── [ 29K May 27 19:34] SentryOptionsTest.kt
│ │ ├── [1.4K Feb 18 16:11] SentryOptionsTracingTest.kt
│ │ ├── [1.0K Feb 18 16:11] SentryReplayOptionsTest.kt
│ │ ├── [2.1K Feb 18 16:11] SentryRuntimeEventProcessorTest.kt
│ │ ├── [ 12K Feb 18 16:11] SentryStackTraceFactoryTest.kt
│ │ ├── [ 52K May 27 19:34] SentryTest.kt
│ │ ├── [3.6K Feb 18 16:11] SentryThreadFactoryTest.kt
│ │ ├── [2.7K Feb 18 16:11] SentryTraceHeaderTest.kt
│ │ ├── [ 55K May 27 19:34] SentryTracerTest.kt
│ │ ├── [ 444 Feb 18 16:11] SentryUUIDTest.kt
│ │ ├── [ 750 Feb 18 16:11] SentryValuesTest.kt
│ │ ├── [8.8K May 27 19:34] SentryWrapperTest.kt
│ │ ├── [ 20K Feb 18 16:11] SessionAdapterTest.kt
│ │ ├── [3.6K Feb 18 16:11] ShutdownHookIntegrationTest.kt
│ │ ├── [1.7K May 27 19:34] SpanContextTest.kt
│ │ ├── [1.3K Feb 18 16:11] SpanStatusTest.kt
│ │ ├── [ 18K May 27 19:34] SpanTest.kt
│ │ ├── [2.7K Feb 18 16:11] StackTest.kt
│ │ ├── [ 175 Feb 18 16:11] StringExtensions.kt
│ │ ├── [2.9K Feb 18 16:11] TraceContextSerializationTest.kt
│ │ ├── [1.4K Feb 18 16:11] TracePropagationTargetsTest.kt
│ │ ├── [ 20K May 27 19:34] TracesSamplerTest.kt
│ │ ├── [5.0K May 27 19:34] TransactionContextTest.kt
│ │ ├── [ 1 Feb 18 16:11] TransactionContextsTest.kt
│ │ ├── [ 708 Feb 18 16:11] UUIDStringUtilsTest.kt
│ │ ├── [ 13K Feb 18 16:11] UncaughtExceptionHandlerIntegrationTest.kt
│ │ ├── [2.6K Feb 18 16:11] UrlDetailsTest.kt
│ │ ├── [2.6K Feb 18 16:11] UserFeedbackSerializationTest.kt
│ │ ├── [ 96 Feb 18 16:11] backpressure
│ │ │ └── [2.8K Feb 18 16:11] BackpressureMonitorTest.kt
│ │ ├── [ 256 May 27 19:34] cache
│ │ │ ├── [6.5K Feb 18 16:11] CacheStrategyTest.kt
│ │ │ ├── [2.4K May 27 19:34] CacheUtilsTest.kt
│ │ │ ├── [ 12K Feb 18 16:11] EnvelopeCacheTest.kt
│ │ │ ├── [5.2K Feb 18 16:11] PersistingOptionsObserverTest.kt
│ │ │ ├── [ 11K May 27 19:34] PersistingScopeObserverTest.kt
│ │ │ └── [ 160 May 27 19:34] tape
│ │ │ ├── [1.1K May 27 19:34] CorruptQueueFileTest.kt
│ │ │ ├── [6.2K May 27 19:34] ObjectQueueTest.kt
│ │ │ └── [ 20K May 27 19:34] QueueFileTest.kt
│ │ ├── [ 160 May 27 19:34] clientreport
│ │ │ ├── [3.4K Feb 18 16:11] AtomicClientReportStorageTest.kt
│ │ │ ├── [6.8K Feb 18 16:11] ClientReportMultiThreadingTest.kt
│ │ │ └── [ 14K May 27 19:34] ClientReportTest.kt
│ │ ├── [ 288 Feb 18 16:11] config
│ │ │ ├── [2.0K Feb 18 16:11] ClasspathPropertiesLoaderTest.kt
│ │ │ ├── [2.0K Feb 18 16:11] CompositePropertiesProviderTest.kt
│ │ │ ├── [1.2K Feb 18 16:11] EnvironmentVariablePropertiesProviderTest.kt
│ │ │ ├── [1.3K Feb 18 16:11] FilesystemPropertiesLoaderTest.kt
│ │ │ ├── [1.7K Feb 18 16:11] PropertiesProviderTest.kt
│ │ │ ├── [1.1K Feb 18 16:11] SimplePropertiesProviderTest.kt
│ │ │ └── [1.0K Feb 18 16:11] SystemPropertyPropertiesProviderTest.kt
│ │ ├── [ 96 Feb 18 16:11] hints
│ │ │ └── [7.1K Feb 18 16:11] HintTest.kt
│ │ ├── [ 96 Feb 18 16:11] instrumentation
│ │ │ └── [ 224 May 27 19:34] file
│ │ │ ├── [1.2K Feb 18 16:11] FileIOSpanManagerTest.kt
│ │ │ ├── [ 10K May 27 19:34] SentryFileInputStreamTest.kt
│ │ │ ├── [8.5K May 27 19:34] SentryFileOutputStreamTest.kt
│ │ │ ├── [3.6K Feb 18 16:11] SentryFileReaderTest.kt
│ │ │ └── [4.0K Feb 18 16:11] SentryFileWriterTest.kt
│ │ ├── [ 160 Feb 18 16:11] internal
│ │ │ ├── [2.5K Feb 18 16:11] SpotlightIntegrationTest.kt
│ │ │ ├── [ 96 Feb 18 16:11] debugmeta
│ │ │ │ └── [4.8K Feb 18 16:11] ResourcesDebugMetaLoaderTest.kt
│ │ │ └── [ 160 Feb 18 16:11] modules
│ │ │ ├── [1.2K Feb 18 16:11] CompositeModulesLoaderTest.kt
│ │ │ ├── [3.1K Feb 18 16:11] ManifestModulesLoaderTest.kt
│ │ │ └── [2.5K Feb 18 16:11] ResourcesModulesLoaderTest.kt
│ │ ├── [1.9K May 27 19:34] protocol
│ │ │ ├── [2.3K Feb 18 16:11] AppSerializationTest.kt
│ │ │ ├── [2.5K Feb 18 16:11] AppTest.kt
│ │ │ ├── [3.8K Feb 18 16:11] BreadcrumbSerializationTest.kt
│ │ │ ├── [1.7K Feb 18 16:11] BrowserSerializationTest.kt
│ │ │ ├── [1.1K Feb 18 16:11] BrowserTest.kt
│ │ │ ├── [3.0K May 27 19:34] CombinedContextsViewSerializationTest.kt
│ │ │ ├── [2.6K May 27 19:34] ContextsSerializationTest.kt
│ │ │ ├── [4.3K May 27 19:34] ContextsTest.kt
│ │ │ ├── [2.1K Feb 18 16:11] DebugImageSerializationTest.kt
│ │ │ ├── [2.5K Feb 18 16:11] DebugMetaSerializationTest.kt
│ │ │ ├── [3.2K May 27 19:34] DebugMetaTest.kt
│ │ │ ├── [3.6K Feb 18 16:11] DeviceSerializationTest.kt
│ │ │ ├── [3.9K Feb 18 16:11] DeviceTest.kt
│ │ │ ├── [1.9K May 27 19:34] FeedbackTest.kt
│ │ │ ├── [1.4K Feb 18 16:11] GpuSerializationTest.kt
│ │ │ ├── [1.5K Feb 18 16:11] GpuTest.kt
│ │ │ ├── [2.5K Feb 18 16:11] MeasurementValueSerializationTest.kt
│ │ │ ├── [2.1K Feb 18 16:11] MechanismSerializationTest.kt
│ │ │ ├── [1019 Feb 18 16:11] MechanismTest.kt
│ │ │ ├── [1.8K Feb 18 16:11] MessageSerializationTest.kt
│ │ │ ├── [ 484 Feb 18 16:11] MessageTest.kt
│ │ │ ├── [2.1K Feb 18 16:11] OperatingSystemSerializationTest.kt
│ │ │ ├── [1.5K Feb 18 16:11] OperatingSystemTest.kt
│ │ │ ├── [2.0K Feb 18 16:11] ReplayRecordingSerializationTest.kt
│ │ │ ├── [1.8K Feb 18 16:11] RequestSerializationTest.kt
│ │ │ ├── [4.3K Feb 18 16:11] RequestTest.kt
│ │ │ ├── [1.4K Feb 18 16:11] ResponseSerializationTest.kt
│ │ │ ├── [1.7K Feb 18 16:11] SdkInfoSerializationTest.kt
│ │ │ ├── [2.8K Feb 18 16:11] SdkVersionSerializationTest.kt
│ │ │ ├── [4.3K Feb 18 16:11] SentryBaseEventSerializationTest.kt
│ │ │ ├── [2.3K Feb 18 16:11] SentryEnvelopeHeaderSerializationTest.kt
│ │ │ ├── [2.0K May 27 19:34] SentryEnvelopeItemHeaderSerializationTest.kt
│ │ │ ├── [2.9K May 27 19:34] SentryEventSerializationTest.kt
│ │ │ ├── [3.7K Feb 18 16:11] SentryExceptionSerializationTest.kt
│ │ │ ├── [1.6K Feb 18 16:11] SentryIdSerializationTest.kt
│ │ │ ├── [3.2K Feb 18 16:11] SentryIdTest.kt
│ │ │ ├── [3.2K May 27 19:34] SentryItemTypeSerializationTest.kt
│ │ │ ├── [1.2K Feb 18 16:11] SentryLockReasonSerializationTest.kt
│ │ │ ├── [3.2K May 27 19:34] SentryLogsSerializationTest.kt
│ │ │ ├── [1.7K Feb 18 16:11] SentryPackageSerializationTest.kt
│ │ │ ├── [2.0K Feb 18 16:11] SentryReplayEventSerializationTest.kt
│ │ │ ├── [1.9K Feb 18 16:11] SentryRuntimeSerializationTest.kt
│ │ │ ├── [1.2K Feb 18 16:11] SentryRuntimeTest.kt
│ │ │ ├── [2.7K Feb 18 16:11] SentrySpanSerializationTest.kt
│ │ │ ├── [ 953 Feb 18 16:11] SentrySpanTest.kt
│ │ │ ├── [2.8K May 27 19:34] SentryStackFrameSerializationTest.kt
│ │ │ ├── [2.8K Feb 18 16:11] SentryStackTraceSerializationTest.kt
│ │ │ ├── [3.7K Feb 18 16:11] SentryThreadSerializationTest.kt
│ │ │ ├── [3.4K Feb 18 16:11] SentryTransactionSerializationTest.kt
│ │ │ ├── [1.2K Feb 18 16:11] SerializationUtils.kt
│ │ │ ├── [2.1K Feb 18 16:11] SessionSerializationTest.kt
│ │ │ ├── [3.3K May 27 19:34] SpanContextSerializationTest.kt
│ │ │ ├── [1.6K Feb 18 16:11] SpanIdSerializationTest.kt
│ │ │ ├── [1.1K Feb 18 16:11] SpanIdTest.kt
│ │ │ ├── [1.0K May 27 19:34] SpringSerializationTest.kt
│ │ │ ├── [4.5K Feb 18 16:11] UserSerializationTest.kt
│ │ │ ├── [2.7K Feb 18 16:11] UserTest.kt
│ │ │ ├── [2.1K Feb 18 16:11] ViewHierarchyNodeSerializationTest.kt
│ │ │ └── [1.8K Feb 18 16:11] ViewHierarchySerializationTest.kt
│ │ ├── [ 320 Feb 18 16:11] rrweb
│ │ │ ├── [1.4K Feb 18 16:11] RRWebBreadcrumbEventSerializationTest.kt
│ │ │ ├── [2.3K Feb 18 16:11] RRWebEventSerializationTest.kt
│ │ │ ├── [1.3K Feb 18 16:11] RRWebInteractionEventSerializationTest.kt
│ │ │ ├── [1.4K Feb 18 16:11] RRWebInteractionMoveEventSerializationTest.kt
│ │ │ ├── [1.2K Feb 18 16:11] RRWebMetaEventSerializationTest.kt
│ │ │ ├── [1.6K Feb 18 16:11] RRWebOptionsEventSerializationTest.kt
│ │ │ ├── [1.3K Feb 18 16:11] RRWebSpanEventSerializationTest.kt
│ │ │ └── [1.4K Feb 18 16:11] RRWebVideoEventSerializationTest.kt
│ │ ├── [ 288 May 27 19:34] transport
│ │ │ ├── [ 12K Feb 18 16:11] AsyncHttpTransportClientReportTest.kt
│ │ │ ├── [ 17K Feb 18 16:11] AsyncHttpTransportTest.kt
│ │ │ ├── [9.5K May 27 19:34] HttpConnectionTest.kt
│ │ │ ├── [5.5K Feb 18 16:11] QueuedThreadPoolExecutorTest.kt
│ │ │ ├── [ 20K May 27 19:34] RateLimiterTest.kt
│ │ │ ├── [4.6K Feb 18 16:11] ReusableCountLatchTest.kt
│ │ │ └── [ 814 Feb 18 16:11] StdoutTransportTest.kt
│ │ ├── [ 736 May 27 19:34] util
│ │ │ ├── [ 382 Feb 18 16:11] AutoClosableReentrantLockTest.kt
│ │ │ ├── [ 12K Feb 18 16:11] CheckInUtilsTest.kt
│ │ │ ├── [3.4K May 27 19:34] CollectionUtilsTest.kt
│ │ │ ├── [ 596 Feb 18 16:11] ExceptionUtilsTest.kt
│ │ │ ├── [ 172 Feb 18 16:11] Extensions.kt
│ │ │ ├── [2.4K Feb 18 16:11] FileUtilsTest.kt
│ │ │ ├── [1.4K Feb 18 16:11] HintUtilsTest.kt
│ │ │ ├── [3.0K Feb 18 16:11] HttpUtilsTest.kt
│ │ │ ├── [3.0K Feb 18 16:11] InitUtilTest.kt
│ │ │ ├── [2.4K Feb 18 16:11] JsonSerializationUtilsTest.kt
│ │ │ ├── [1.3K Feb 18 16:11] LazyEvaluatorTest.kt
│ │ │ ├── [6.5K Feb 18 16:11] MapObjectReaderTest.kt
│ │ │ ├── [5.6K Feb 18 16:11] MapObjectWriterTest.kt
│ │ │ ├── [ 315 Feb 18 16:11] PlatformTestManipulator.kt
│ │ │ ├── [6.8K May 27 19:34] SampleRateUtilTest.kt
│ │ │ ├── [1.3K Feb 18 16:11] SentryRandomTest.kt
│ │ │ ├── [3.1K Feb 18 16:11] SpanUtilsTest.kt
│ │ │ ├── [6.2K Feb 18 16:11] StringUtilsTest.kt
│ │ │ ├── [ 15K May 27 19:34] TracingUtilsTest.kt
│ │ │ ├── [ 12K May 27 19:34] UrlUtilsTest.kt
│ │ │ └── [ 96 May 27 19:34] thread
│ │ │ └── [1.6K May 27 19:34] ThreadCheckerTest.kt
│ │ └── [ 96 Feb 18 16:11] vendor
│ │ └── [ 128 Feb 18 16:11] gson
│ │ ├── [ 96 Feb 18 16:11] internal
│ │ │ └── [ 96 Feb 18 16:11] bind
│ │ │ └── [ 96 Feb 18 16:11] util
│ │ │ └── [3.8K Feb 18 16:11] ISO8601UtilsTest.java
│ │ └── [ 128 Feb 18 16:11] stream
│ │ ├── [ 55K Feb 18 16:11] JsonReaderTest.java
│ │ └── [ 20K Feb 18 16:11] JsonWriterTest.java
│ └── [ 608 May 27 19:34] resources
│ ├── [234K Feb 18 16:11] Tongariro.jpg
│ ├── [4.0K May 27 19:34] corrupt_queue_file.txt
│ ├── [ 519 Feb 18 16:11] envelope-event-attachment.txt
│ ├── [ 642 Feb 18 16:11] envelope-feedback.txt
│ ├── [ 421 Feb 18 16:11] envelope-session-start.txt
│ ├── [ 964 Feb 18 16:11] envelope-transaction-with-sample-rand.txt
│ ├── [ 942 Feb 18 16:11] envelope-transaction-with-sample-rate.txt
│ ├── [ 834 Feb 18 16:11] envelope-transaction.txt
│ ├── [ 155 Feb 18 16:11] envelope_attachment.txt
│ ├── [ 376 Feb 18 16:11] envelope_session.txt
│ ├── [ 516 Feb 18 16:11] envelope_session_sdkversion.txt
│ ├── [ 672 Feb 18 16:11] event.json
│ ├── [1.3K Feb 18 16:11] event_breadcrumb_data.json
│ ├── [ 368 Feb 18 16:11] event_with_contexts.json
│ ├── [1.9K May 27 19:34] json
│ │ ├── [ 621 Feb 18 16:11] app.json
│ │ ├── [ 377 Feb 18 16:11] breadcrumb.json
│ │ ├── [ 110 Feb 18 16:11] browser.json
│ │ ├── [ 701 May 27 19:34] checkin_crontab.json
│ │ ├── [ 717 May 27 19:34] checkin_interval.json
│ │ ├── [4.6K May 27 19:34] contexts.json
│ │ ├── [ 483 Feb 18 16:11] debug_image.json
│ │ ├── [ 805 Feb 18 16:11] debug_meta.json
│ │ ├── [1.5K Feb 18 16:11] device.json
│ │ ├── [ 408 Feb 18 16:11] gpu.json
│ │ ├── [ 78 Feb 18 16:11] measurement_value_double.json
│ │ ├── [ 60 Feb 18 16:11] measurement_value_int.json
│ │ ├── [ 46 Feb 18 16:11] measurement_value_missing.json
│ │ ├── [ 441 Feb 18 16:11] mechanism.json
│ │ ├── [ 236 Feb 18 16:11] message.json
│ │ ├── [ 308 Feb 18 16:11] operating_system.json
│ │ ├── [1.1K Feb 18 16:11] replay_recording.json
│ │ ├── [ 754 Feb 18 16:11] request.json
│ │ ├── [ 311 Feb 18 16:11] response.json
│ │ ├── [ 335 Feb 18 16:11] rrweb_breadcrumb_event.json
│ │ ├── [ 40 Feb 18 16:11] rrweb_event.json
│ │ ├── [ 175 Feb 18 16:11] rrweb_interaction_event.json
│ │ ├── [ 218 Feb 18 16:11] rrweb_interaction_move_event.json
│ │ ├── [ 131 Feb 18 16:11] rrweb_meta_event.json
│ │ ├── [ 408 Feb 18 16:11] rrweb_options_event.json
│ │ ├── [ 363 Feb 18 16:11] rrweb_span_event.json
│ │ ├── [ 382 Feb 18 16:11] rrweb_video_event.json
│ │ ├── [ 162 Feb 18 16:11] sdk_info.json
│ │ ├── [ 409 Feb 18 16:11] sdk_version.json
│ │ ├── [8.0K May 27 19:34] sentry_base_event.json
│ │ ├── [8.0K May 27 19:34] sentry_base_event_with_null_extra.json
│ │ ├── [1.1K Feb 18 16:11] sentry_envelope_header.json
│ │ ├── [ 271 May 27 19:34] sentry_envelope_item_header.json
│ │ ├── [ 15K May 27 19:34] sentry_event.json
│ │ ├── [1.8K Feb 18 16:11] sentry_exception.json
│ │ ├── [ 56 Feb 18 16:11] sentry_id.json
│ │ ├── [ 119 Feb 18 16:11] sentry_lock_reason.json
│ │ ├── [1.1K May 27 19:34] sentry_logs.json
│ │ ├── [ 110 Feb 18 16:11] sentry_package.json
│ │ ├── [8.8K May 27 19:34] sentry_replay_event.json
│ │ ├── [ 173 Feb 18 16:11] sentry_runtime.json
│ │ ├── [ 706 Feb 18 16:11] sentry_span.json
│ │ ├── [ 728 Feb 18 16:11] sentry_span_legacy_date_format.json
│ │ ├── [ 995 May 27 19:34] sentry_stack_frame.json
│ │ ├── [1.0K Feb 18 16:11] sentry_stack_trace.json
│ │ ├── [1.7K Feb 18 16:11] sentry_thread.json
│ │ ├── [ 11K May 27 19:34] sentry_transaction.json
│ │ ├── [ 11K May 27 19:34] sentry_transaction_legacy_date_format.json
│ │ ├── [8.9K May 27 19:34] sentry_transaction_no_measurement_unit.json
│ │ ├── [ 606 Feb 18 16:11] session.json
│ │ ├── [ 733 May 27 19:34] span_context.json
│ │ ├── [ 569 Feb 18 16:11] span_context_null_op.json
│ │ ├── [ 58 Feb 18 16:11] span_id.json
│ │ ├── [ 46 May 27 19:34] spring.json
│ │ ├── [ 483 Feb 18 16:11] trace_state.json
│ │ ├── [ 341 Feb 18 16:11] trace_state_no_sample_rate.json
│ │ ├── [ 547 Feb 18 16:11] user.json
│ │ ├── [ 111 Feb 18 16:11] view_hierarchy.json
│ │ └── [ 300 Feb 18 16:11] view_hierarchy_node.json
│ ├── [ 96 Feb 18 16:11] mockito-extensions
│ │ └── [ 18 Feb 18 16:11] org.mockito.plugins.MockMaker
│ └── [ 375 Feb 18 16:11] session.json
├── [ 192 May 27 19:34] sentry-android
│ ├── [ 868 May 27 19:34] build.gradle.kts
│ ├── [ 0 Feb 18 16:11] proguard-rules.pro
│ └── [ 96 Feb 18 16:11] src
│ └── [ 128 Feb 18 16:11] main
│ ├── [ 173 Feb 18 16:11] AndroidManifest.xml
│ └── [ 96 Feb 18 16:11] res
│ └── [ 96 Feb 18 16:11] values
│ └── [ 77 Feb 18 16:11] public.xml
├── [ 256 May 27 19:34] sentry-android-core
│ ├── [ 62 Feb 18 16:11] .gitignore
│ ├── [ 96 May 27 19:34] api
│ │ └── [ 29K May 27 19:34] sentry-android-core.api
│ ├── [3.5K May 27 19:34] build.gradle.kts
│ ├── [3.7K Feb 18 16:11] proguard-rules.pro
│ └── [ 128 Feb 18 16:11] src
│ ├── [ 160 Feb 18 16:11] main
│ │ ├── [ 657 Feb 18 16:11] AndroidManifest.xml
│ │ ├── [ 96 Feb 18 16:11] java
│ │ │ └── [ 96 Feb 18 16:11] io
│ │ │ └── [ 96 Feb 18 16:11] sentry
│ │ │ └── [ 96 Feb 18 16:11] android
│ │ │ └── [1.9K May 27 19:34] core
│ │ │ ├── [7.0K Feb 18 16:11] ANRWatchDog.java
│ │ │ ├── [4.6K Feb 18 16:11] ActivityBreadcrumbsIntegration.java
│ │ │ ├── [9.2K Feb 18 16:11] ActivityFramesTracker.java
│ │ │ ├── [ 30K May 27 19:34] ActivityLifecycleIntegration.java
│ │ │ ├── [ 14K May 27 19:34] AndroidContinuousProfiler.java
│ │ │ ├── [4.3K May 27 19:34] AndroidCpuCollector.java
│ │ │ ├── [ 645 Feb 18 16:11] AndroidDateUtils.java
│ │ │ ├── [1.6K May 27 19:34] AndroidFatalLogger.java
│ │ │ ├── [2.2K Feb 18 16:11] AndroidLogger.java
│ │ │ ├── [ 927 May 27 19:34] AndroidMemoryCollector.java
│ │ │ ├── [ 19K May 27 19:34] AndroidOptionsInitializer.java
│ │ │ ├── [ 15K May 27 19:34] AndroidProfiler.java
│ │ │ ├── [ 728 May 27 19:34] AndroidSocketTagger.java
│ │ │ ├── [ 12K May 27 19:34] AndroidTransactionProfiler.java
│ │ │ ├── [ 971 Feb 18 16:11] AndroidTransportGate.java
│ │ │ ├── [6.6K Feb 18 16:11] AnrIntegration.java
│ │ │ ├── [ 595 Feb 18 16:11] AnrIntegrationFactory.java
│ │ │ ├── [ 25K May 27 19:34] AnrV2EventProcessor.java
│ │ │ ├── [ 15K May 27 19:34] AnrV2Integration.java
│ │ │ ├── [6.3K May 27 19:34] AppComponentsBreadcrumbsIntegration.java
│ │ │ ├── [4.6K May 27 19:34] AppLifecycleIntegration.java
│ │ │ ├── [1.1K Feb 18 16:11] AppState.java
│ │ │ ├── [1.2K Feb 18 16:11] ApplicationNotResponding.java
│ │ │ ├── [2.4K Feb 18 16:11] BuildInfoProvider.java
│ │ │ ├── [ 20K May 27 19:34] ContextUtils.java
│ │ │ ├── [1.2K May 27 19:34] CurrentActivityHolder.java
│ │ │ ├── [ 12K Feb 18 16:11] DefaultAndroidEventProcessor.java
│ │ │ ├── [ 16K May 27 19:34] DeviceInfoUtil.java
│ │ │ ├── [1.7K Feb 18 16:11] EmptySecureContentProvider.java
│ │ │ ├── [3.5K Feb 18 16:11] EnvelopeFileObserver.java
│ │ │ ├── [3.8K May 27 19:34] EnvelopeFileObserverIntegration.java
│ │ │ ├── [ 494 Feb 18 16:11] IDebugImagesLoader.java
│ │ │ ├── [2.4K Feb 18 16:11] Installation.java
│ │ │ ├── [ 13K May 27 19:34] InternalSentrySdk.java
│ │ │ ├── [5.1K May 27 19:34] LifecycleWatcher.java
│ │ │ ├── [1.1K Feb 18 16:11] LoadClass.java
│ │ │ ├── [ 536 Feb 18 16:11] MainLooperHandler.java
│ │ │ ├── [ 23K May 27 19:34] ManifestMetadataReader.java
│ │ │ ├── [ 362 Feb 18 16:11] NdkHandlerStrategy.java
│ │ │ ├── [3.6K Feb 18 16:11] NdkIntegration.java
│ │ │ ├── [ 12K Feb 18 16:11] NetworkBreadcrumbsIntegration.java
│ │ │ ├── [ 693 Feb 18 16:11] NoOpDebugImagesLoader.java
│ │ │ ├── [ 12K Feb 18 16:11] PerformanceAndroidEventProcessor.java
│ │ │ ├── [3.9K May 27 19:34] ScreenshotEventProcessor.java
│ │ │ ├── [7.1K Feb 18 16:11] SendCachedEnvelopeIntegration.java
│ │ │ ├── [ 10K May 27 19:34] SentryAndroid.java
│ │ │ ├── [ 897 Feb 18 16:11] SentryAndroidDateProvider.java
│ │ │ ├── [ 20K May 27 19:34] SentryAndroidOptions.java
│ │ │ ├── [3.0K Feb 18 16:11] SentryFrameMetrics.java
│ │ │ ├── [1.5K May 27 19:34] SentryInitProvider.java
│ │ │ ├── [3.7K Feb 18 16:11] SentryLogcatAdapter.java
│ │ │ ├── [9.1K May 27 19:34] SentryPerformanceProvider.java
│ │ │ ├── [ 13K Feb 18 16:11] SpanFrameMetricsCollector.java
│ │ │ ├── [ 16K May 27 19:34] SystemEventsBreadcrumbsIntegration.java
│ │ │ ├── [5.5K May 27 19:34] UserInteractionIntegration.java
│ │ │ ├── [9.4K Feb 18 16:11] ViewHierarchyEventProcessor.java
│ │ │ ├── [ 96 Feb 18 16:11] cache
│ │ │ │ └── [6.3K Feb 18 16:11] AndroidEnvelopeCache.java
│ │ │ ├── [ 224 Feb 18 16:11] internal
│ │ │ │ ├── [ 96 May 27 19:34] debugmeta
│ │ │ │ │ └── [2.0K May 27 19:34] AssetsDebugMetaLoader.java
│ │ │ │ ├── [ 256 May 27 19:34] gestures
│ │ │ │ │ ├── [2.4K Feb 18 16:11] AndroidViewGestureTargetLocator.java
│ │ │ │ │ ├── [2.6K Feb 18 16:11] NoOpWindowCallback.java
│ │ │ │ │ ├── [ 13K May 27 19:34] SentryGestureListener.java
│ │ │ │ │ ├── [2.8K May 27 19:34] SentryWindowCallback.java
│ │ │ │ │ ├── [4.6K May 27 19:34] ViewUtils.java
│ │ │ │ │ └── [3.7K Feb 18 16:11] WindowCallbackAdapter.java
│ │ │ │ ├── [ 96 May 27 19:34] modules
│ │ │ │ │ └── [1.4K May 27 19:34] AssetsModulesLoader.java
│ │ │ │ ├── [ 160 May 27 19:34] threaddump
│ │ │ │ │ ├── [1.1K Feb 18 16:11] Line.java
│ │ │ │ │ ├── [2.7K Feb 18 16:11] Lines.java
│ │ │ │ │ └── [ 17K May 27 19:34] ThreadDumpParser.java