forked from newrelic/docs-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
full-stack-observability.yml
1285 lines (1285 loc) · 83 KB
/
full-stack-observability.yml
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
title: Full-Stack Observability
path: /docs/full-stack-observability
icon: nr-fso
pages:
- title: Overview
path: /docs/full-stack-observability
- title: Observe everything
pages:
- title: Get started
pages:
- title: Intro to Full-Stack Observability
path: /docs/full-stack-observability/observe-everything/get-started/get-started-full-stack-observability
- title: New Relic guided install overview
path: /docs/full-stack-observability/observe-everything/get-started/new-relic-guided-install-overview
- title: Observability solutions
pages:
- title: Application monitoring (APM)
path: /docs/full-stack-observability/monitor-everything/observability-solutions/application-monitoring-apm
- title: Browser monitoring
path: /docs/full-stack-observability/monitor-everything/observability-solutions/browser-monitoring
- title: Distributed tracing
path: /docs/full-stack-observability/monitor-everything/observability-solutions/distributed-tracing
- title: Infrastructure monitoring
path: /docs/full-stack-observability/monitor-everything/observability-solutions/infrastructure-monitoring
- title: Kubernetes monitoring
path: /docs/full-stack-observability/monitor-everything/observability-solutions/kubernetes-monitoring
- title: Logs in context
path: /docs/full-stack-observability/monitor-everything/observability-solutions/logs-context
- title: Mobile monitoring
path: /docs/full-stack-observability/monitor-everything/observability-solutions/mobile-monitoring
- title: Serverless monitoring
path: /docs/full-stack-observability/monitor-everything/observability-solutions/serverless-monitoring
- title: Synthetic monitoring
path: /docs/full-stack-observability/monitor-everything/observability-solutions/synthetic-monitoring
- title: Instrument everything
pages:
- title: Get started
pages:
- title: Introduction to integrations
path: /docs/full-stack-observability/instrument-everything/get-started-new-relic-instrumentation/introduction-new-relic-integrations
- title: Instrument core services and applications
pages:
- title: On-host integrations
path: /docs/full-stack-observability/instrument-everything/instrument-core-services-applications/core-services-integrations
- title: Kubernetes integration
path: /docs/full-stack-observability/instrument-everything/instrument-core-services-applications/kubernetes-integration
- title: Cloud services integrations
path: /docs/full-stack-observability/instrument-everything/instrument-core-services-applications/cloud-services-integrations
- title: Amazon ECS integration
path: /docs/full-stack-observability/instrument-everything/instrument-core-services-applications/amazon-ecs-integration
- title: Open source telemetry integrations
path: /docs/full-stack-observability/instrument-everything/instrument-core-services-applications/open-source-telemetry-integrations
- title: Prometheus integrations
path: /docs/full-stack-observability/instrument-everything/instrument-core-services-applications/prometheus-integrations
- title: Grafana integrations
path: /docs/full-stack-observability/instrument-everything/instrument-core-services-applications/grafana-integrations
- title: Develop your own integrations
pages:
- title: 'New Relic Flex: Build your own integration'
path: /docs/integrations/host-integrations/host-integrations-list/flex-integration-tool-build-your-own-integration
- title: New Relic Telemetry SDK
path: /docs/full-stack-observability/instrument-everything/develop-your-own-integrations/new-relic-telemetry-sdk
- title: New Relic APIs
path: /docs/full-stack-observability/instrument-everything/develop-your-own-integrations/new-relic-apis
- title: New Relic integrations SDK
path: /docs/full-stack-observability/instrument-everything/develop-your-own-integrations/new-relic-integrations-sdk
- title: Instrument your code and infrastructure
pages:
- title: Language agents (APM)
path: /docs/full-stack-observability/instrument-everything/instrument-applications-infrastructure/language-agents-apm
- title: Infrastructure agent
path: /docs/full-stack-observability/instrument-everything/instrument-applications-infrastructure/infrastructure-agent
- title: Understand dependencies
path: /docs/understand-dependencies
pages:
- title: Understand system dependencies
pages:
- title: Service maps
pages:
- title: Introduction to service maps
path: /docs/understand-dependencies/understand-system-dependencies/service-maps/introduction-service-maps
- title: How to use service maps
path: /docs/understand-dependencies/understand-system-dependencies/service-maps/how-use-service-maps
- title: Legacy APM service maps
path: /docs/understand-dependencies/understand-system-dependencies/service-maps/service-maps-apm
- title: Missing entities in maps
path: /docs/understand-dependencies/understand-system-dependencies/service-maps/troubleshooting-missing-entities-service-maps
- title: Relationship API
pages:
- title: Use the Relationship API
path: /docs/understand-dependencies/understand-system-dependencies/relationship-api/relationship-api
- title: Distributed tracing
pages:
- title: Get started
pages:
- title: Intro to distributed tracing
path: /docs/understand-dependencies/distributed-tracing/get-started/introduction-distributed-tracing
- title: Planning guide
path: /docs/understand-dependencies/distributed-tracing/get-started/distributed-tracing-planning-guide
- title: How distributed tracing works
path: /docs/understand-dependencies/distributed-tracing/get-started/how-new-relic-distributed-tracing-works
- title: Enable and configure
pages:
- title: 'Overview: Enable distributed tracing'
path: /docs/understand-dependencies/distributed-tracing/enable-configure/overview-enable-distributed-tracing
- title: Language agents
path: /docs/understand-dependencies/distributed-tracing/enable-configure/language-agents-enable-distributed-tracing
- title: Browser monitoring
path: /docs/understand-dependencies/distributed-tracing/enable-configure/new-relic-browser
- title: Third-party telemetry tools
path: /docs/understand-dependencies/distributed-tracing/enable-configure/integrations-enable-distributed-tracing
- title: AWS Lambda
path: /docs/understand-dependencies/distributed-tracing/enable-configure/aws-lambda
- title: Zipkin
path: /docs/understand-dependencies/distributed-tracing/enable-configure/zipkin
- title: Trace API
path: /docs/understand-dependencies/distributed-tracing/enable-configure/trace-api
- title: Infinite Tracing
pages:
- title: Intro to Infinite Tracing
path: /docs/understand-dependencies/distributed-tracing/infinite-tracing/introduction-infinite-tracing
- title: Set up the trace observer
path: /docs/understand-dependencies/distributed-tracing/infinite-tracing/set-trace-observer
- title: Configure trace observer monitoring
path: /docs/understand-dependencies/distributed-tracing/infinite-tracing/infinite-tracing-configure-trace-observer-monitoring
- title: Configure span attribute filter
path: /docs/understand-dependencies/distributed-tracing/infinite-tracing/infinite-tracing-configure-span-attribute-trace-filter
- title: Configure random trace filter
path: /docs/understand-dependencies/distributed-tracing/infinite-tracing/infinite-tracing-configure-random-trace-filter
- title: Configure proxy support
path: /docs/understand-dependencies/distributed-tracing/infinite-tracing/infinite-tracing-configure-proxy-support
- title: 'Configure SSL for Java 7, 8'
path: /docs/understand-dependencies/distributed-tracing/other-requirements/infinite-tracing-configuring-ssl-java-7-8
- title: UI and data
pages:
- title: Understand and use the UI
path: /docs/understand-dependencies/distributed-tracing/ui-data/understand-use-distributed-tracing-ui
- title: Browser data
path: /docs/understand-dependencies/distributed-tracing/ui-data/browser-data
- title: Query trace data
path: /docs/understand-dependencies/distributed-tracing/ui-data/query-distributed-trace-data
- title: Span attributes
path: /docs/understand-dependencies/distributed-tracing/ui-data/span-attributes
- title: Trace API
pages:
- title: Introduction to the Trace API
path: /docs/understand-dependencies/distributed-tracing/trace-api/introduction-trace-api
- title: Requirements and limits
path: /docs/understand-dependencies/distributed-tracing/trace-api/trace-api-general-requirements-limits
- title: Send New-Relic-format data
path: /docs/understand-dependencies/distributed-tracing/trace-api/report-new-relic-format-traces-trace-api
- title: Send Zipkin-format data
path: /docs/understand-dependencies/distributed-tracing/trace-api/report-zipkin-format-traces-trace-api
- title: Decorate spans with attributes
path: /docs/understand-dependencies/distributed-tracing/trace-api/trace-api-decorate-spans-attributes
- title: Troubleshoot Trace API
path: /docs/apm/distributed-tracing/trace-api/troubleshooting-missing-trace-api-data
- title: Troubleshooting
pages:
- title: Missing trace data
path: /docs/understand-dependencies/distributed-tracing/troubleshooting/missing-trace-data
- title: Trace configuration conflicts
path: /docs/understand-dependencies/distributed-tracing/troubleshooting/infinite-tracing-trace-configuration-conflicts
- title: APM
path: /docs/apm
pages:
- title: Getting started
pages:
- title: Introduction to APM
path: /docs/apm/new-relic-apm/getting-started/introduction-apm
- title: Alert information in APM
path: /docs/apm/new-relic-apm/getting-started/view-app-alert-information-apm
- title: APM data security
path: /docs/apm/new-relic-apm/getting-started/apm-agent-data-security
- title: APM UI pages
pages:
- title: Monitoring
pages:
- title: APM Summary page
path: /docs/apm/apm-ui-pages/monitoring/apm-summary-page-view-transaction-apdex-usage-data
- title: Response time chart types (APM and browser)
path: /docs/apm/apm-ui-pages/monitoring/response-time-chart-types-apm-browser
- title: Distributed tracing page
path: /docs/apm/applications-menu/monitoring/distributed-tracing-page
- title: Transactions page
path: /docs/apm/apm-ui-pages/monitoring/transactions-page-find-specific-performance-problems
- title: Databases page
path: /docs/apm/apm-ui-pages/monitoring/databases-page-view-operations-throughput-response-time
- title: View slow query details
path: /docs/apm/apm-ui-pages/monitoring/view-slow-query-details
- title: External services page
path: /docs/apm/apm-ui-pages/monitoring/external-services-page-view-web-cloud-network-data
- title: APM data in Infrastructure
path: /docs/apm/apm-ui-pages/monitoring/apm-data-infrastructure
- title: View your applications index
path: /docs/apm/apm-ui-pages/monitoring/view-your-applications-index
- title: Agent-specific UI
path: /docs/apm/apm-ui-pages/monitoring/agent-specific-ui-pages
- title: Features
pages:
- title: Analyze database issues
path: /docs/apm/apm-ui-pages/features/analyze-database-instance-level-performance-issues
- title: Tracking front-end time
path: /docs/apm/apm-ui-pages/features/request-queuing-tracking-front-end-time
- title: Request queue configuration
path: /docs/apm/applications-menu/features/configure-request-queue-reporting
- title: Request queue config examples
path: /docs/apm/applications-menu/features/request-queue-server-configuration-examples
- title: Ticketing integrations
path: /docs/using-new-relic/user-interface-functions/share-your-data/ticketing-integrations
- title: Events
pages:
- title: Deployments page
path: /docs/apm/apm-ui-pages/events/deployments-page-view-impact-your-app-users
- title: View alert history
path: /docs/apm/applications-menu/events/view-alert-history
- title: Thread profiler tool
path: /docs/apm/apm-ui-pages/events/thread-profiler-tool
- title: Error analytics
pages:
- title: Errors page
path: /docs/apm/apm-ui-pages/error-analytics/errors-page-find-fix-verify-problems
- title: Error profiles
path: /docs/apm/apm-ui-pages/error-analytics/apm-error-profiles-troubleshoot-trends
- title: Error data
path: /docs/apm/apm-ui-pages/error-analytics/manage-error-data
- title: Transactions
pages:
- title: Intro to transactions
pages:
- title: What is a transaction?
path: /docs/apm/transactions/intro-transactions/transactions-new-relic-apm
- title: Non-web/background transactions
path: /docs/apm/transactions/intro-transactions/monitor-background-processes-other-non-web-transactions
- title: Transactions page
path: /docs/apm/transactions/intro-transactions/transactions-page-find-specific-performance-problems
- title: Transaction traces
pages:
- title: Introduction to transaction traces
path: /docs/apm/transactions/transaction-traces/introduction-transaction-traces
- title: Configure transaction traces
path: /docs/apm/transactions/transaction-traces/configure-transaction-traces
- title: Summary page
path: /docs/apm/transactions/transaction-traces/transaction-traces-summary-page
- title: Trace details page
path: /docs/apm/transactions/transaction-traces/transaction-traces-trace-details-page
- title: Database queries page
path: /docs/apm/transactions/transaction-traces/transaction-traces-database-queries-page
- title: Security options
path: /docs/apm/transactions/transaction-traces/security-transaction-traces
- title: Not seeing transaction traces
path: /docs/apm/transactions/transaction-traces/troubleshooting-not-seeing-transaction-traces
- title: Key transactions
pages:
- title: Introduction to key transactions
path: /docs/apm/transactions/key-transactions/introduction-key-transactions
- title: Charts and data
path: /docs/apm/transactions/key-transactions/key-transaction-charts-data
- title: Create and update
path: /docs/apm/transactions/key-transactions/create-update-key-transactions
- title: Tag key transactions
path: /docs/apm/transactions/key-transactions/tag-key-transactions
- title: Key transaction alerts
path: /docs/apm/transactions/key-transactions/key-transaction-alerts
- title: Cross application traces
pages:
- title: Intro to cross app traces
path: /docs/apm/transactions/cross-application-traces/introduction-cross-application-traces
- title: Troubleshoot cross app traces
path: /docs/apm/transactions/cross-application-traces/troubleshoot-cross-application-tracing
- title: Reports
pages:
- title: Service level agreements
pages:
- title: SLA reports
path: /docs/apm/reports/service-level-agreements/apm-sla-reports
- title: API examples for SLA reports
path: /docs/apm/reports/service-level-agreements/api-examples-sla-reports
- title: Other performance analysis
pages:
- title: Background jobs analysis report
path: /docs/apm/reports/other-performance-analysis/background-jobs-analysis-report
- title: Capacity analysis report
path: /docs/apm/reports/other-performance-analysis/capacity-analysis-report
- title: Database analysis report
path: /docs/apm/reports/other-performance-analysis/database-analysis-report
- title: Scalability analysis report
path: /docs/apm/reports/other-performance-analysis/scalability-analysis-report
- title: Web transactions analysis report
path: /docs/apm/reports/other-performance-analysis/web-transactions-analysis-report
- title: Weekly performance report
path: /docs/apm/reports/other-performance-analysis/weekly-performance-report
- title: Guides
pages:
- title: APM best practices guide
path: /docs/apm/new-relic-apm/guides/apm-best-practices-guide
- title: Apdex
pages:
- title: 'Apdex: Measure user satisfaction'
path: /docs/apm/new-relic-apm/apdex/apdex-measure-user-satisfaction
- title: View your Apdex score
path: /docs/apm/new-relic-apm/apdex/view-your-apdex-score
- title: Change your Apdex settings
path: /docs/apm/new-relic-apm/apdex/change-your-apdex-settings
- title: Troubleshooting
pages:
- title: CPU usage mismatch
path: /docs/apm/new-relic-apm/troubleshooting/cpu-usage-mismatch-or-usage-over-100
- title: Missing charts
path: /docs/apm/new-relic-apm/troubleshooting/charts-missing-or-do-not-render
- title: 'Event limits and sampling (APM, mobile)'
path: /docs/using-new-relic/data/understand-data/new-relic-event-limits-sampling
- title: Errors while using other APM software
path: /docs/apm/new-relic-apm/troubleshooting/errors-while-using-other-apm-software
- title: Maintenance
pages:
- title: Disable APM agent
path: /docs/apm/new-relic-apm/maintenance/disable-apm-agent
- title: Remove apps
path: /docs/apm/new-relic-apm/maintenance/remove-applications-new-relic
- title: Record and monitor deployments
path: /docs/apm/new-relic-apm/maintenance/record-monitor-deployments
- title: Browser monitoring
path: /docs/browser
pages:
- title: Getting started
pages:
- title: Intro to browser monitoring
path: /docs/browser/browser-monitoring/getting-started/introduction-browser-monitoring
- title: Compatibility and requirements
path: /docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring
- title: Browser agent release notes
path: /docs/browser/new-relic-browser/getting-started/browser-agent-release-notes
- title: Browser apps index
path: /docs/browser/new-relic-browser/getting-started/browser-apps-index
- title: Browser Summary page
path: /docs/browser/browser-monitoring/getting-started/browser-summary-page
- title: Guides
pages:
- title: Browser API and SPA API guide
path: /docs/browser/new-relic-browser/guides/guide-using-browser-spa-apis
- title: Browser monitoring best practices guide
path: /docs/browser/browser-monitoring/guides/browser-monitoring-best-practices-guide
- title: Installation
pages:
- title: Install Browser
path: /docs/browser/browser-monitoring/installation/install-browser-monitoring-agent
- title: Update the Browser agent
path: /docs/browser/new-relic-browser/installation/update-browser-agent
- title: Disable Browser monitoring
path: /docs/browser/new-relic-browser/installation/disable-browser-monitoring
- title: Delete apps from Browser
path: /docs/browser/new-relic-browser/installation/delete-apps-new-relic-browser
- title: Install Browser for AMP
path: /docs/browser/new-relic-browser/installation/monitor-amp-pages-new-relic-browser
- title: Configuration
pages:
- title: 'Browser Apdex, countries'
path: /docs/browser/new-relic-browser/configuration/browser-settings-ui-options-apdex-geography
- title: Privacy settings
path: /docs/browser/browser-monitoring/configuration/privacy-settings
- title: Rename Browser apps
path: /docs/browser/new-relic-browser/configuration/rename-browser-apps
- title: Domain settings
path: /docs/browser/new-relic-browser/configuration/monitor-or-block-specific-domains-subdomains
- title: Metrics by URL patterns
path: /docs/browser/new-relic-browser/configuration/group-browser-metrics-urls
- title: License key and app ID
path: /docs/browser/browser-monitoring/configuration/browser-license-key-app-id
- title: Alerts in Browser
path: /docs/browser/new-relic-browser/configuration/view-browser-apps-alert-information
- title: Browser agent and SPA API
path: /docs/browser/new-relic-browser/browser-agent-spa-api
pages:
- title: View all methods
path: /docs/browser/new-relic-browser/browser-agent-spa-api/view-all-methods
- title: addPageAction
path: /docs/browser/new-relic-browser/browser-agent-spa-api/add-page-action
- title: addRelease
path: /docs/browser/new-relic-browser/browser-agent-spa-api/add-release
- title: addToTrace
path: /docs/browser/new-relic-browser/browser-agent-spa-api/addtotrace-browser-agent-api
- title: finished
path: /docs/browser/new-relic-browser/browser-agent-spa-api/finished
- title: noticeError
path: /docs/browser/new-relic-browser/browser-agent-spa-api/noticeerror-browser-agent-api
- title: setCustomAttribute
path: /docs/browser/new-relic-browser/browser-agent-spa-api/setcustomattribute-browser-agent-api
- title: setErrorHandler
path: /docs/browser/new-relic-browser/browser-agent-spa-api/set-error-handler
- title: setPageViewName
path: /docs/browser/new-relic-browser/browser-agent-spa-api/setpageviewname-browser-agent-api
- title: 'SPA: actionText'
path: /docs/browser/new-relic-browser/browser-agent-spa-api/actiontext-browser-spa-api
- title: 'SPA: interaction'
path: /docs/browser/new-relic-browser/browser-agent-spa-api/interaction-browser-spa-api
- title: 'SPA: createTracer'
path: /docs/browser/new-relic-browser/browser-agent-spa-api/createtracer-browser-spa-api
- title: 'SPA: end'
path: /docs/browser/new-relic-browser/browser-agent-spa-api/end-browser-spa-api
- title: 'SPA: getContext'
path: /docs/browser/new-relic-browser/browser-agent-spa-api/getcontext-browser-spa-api
- title: 'SPA: ignore'
path: /docs/browser/new-relic-browser/browser-agent-spa-api/ignore-browser-spa-api
- title: 'SPA: onEnd'
path: /docs/browser/new-relic-browser/browser-agent-spa-api/spa-on-end
- title: 'SPA: save'
path: /docs/browser/new-relic-browser/browser-agent-spa-api/save-browser-spa-api
- title: 'SPA: setAttribute'
path: /docs/browser/new-relic-browser/browser-agent-spa-api/setattribute-browser-spa-api
- title: 'SPA: setCurrentRouteName'
path: /docs/browser/new-relic-browser/browser-agent-spa-api/setcurrentroutename-browser-spa-api
- title: 'SPA: setName'
path: /docs/browser/new-relic-browser/browser-agent-spa-api/setname-browser-spa-api
- title: Page load timing resources
pages:
- title: Page load timing process
path: /docs/browser/new-relic-browser/page-load-timing-resources/page-load-timing-process
- title: PageViewTiming event
path: /docs/browser/new-relic-browser/page-load-timing-resources/pageviewtiming-async-or-dynamic-page-details
- title: Instrumentation for browser monitoring
path: /docs/browser/new-relic-browser/page-load-timing-resources/instrumentation-browser-monitoring
- title: Comparative charting
path: /docs/browser/new-relic-browser/page-load-timing-resources/compare-page-load-performance-browser-synthetics
- title: New Relic cookies used by Browser
path: /docs/browser/browser-monitoring/page-load-timing-resources/new-relic-cookies-used-browser
- title: Navigation start time unknown
path: /docs/browser/new-relic-browser/page-load-timing-resources/navigation-start-time-unknown
- title: Session cookies
path: /docs/browser/browser-monitoring/page-load-timing-resources/cookie-collection-session-tracking
- title: Cached pages
path: /docs/browser/new-relic-browser/page-load-timing-resources/cached-pages
- title: Browser Pro features
pages:
- title: SPA monitoring
path: /docs/browser/new-relic-browser/browser-pro-features/spa-monitoring
- title: AJAX page
path: /docs/browser/browser-monitoring/browser-pro-features/ajax-page-identify-time-consuming-calls
- title: JS errors page
path: /docs/browser/new-relic-browser/browser-pro-features/javascript-errors-page-detect-analyze-errors
- title: Error profiles
path: /docs/browser/new-relic-browser/browser-pro-features/browser-error-profiles-find-error-causes
- title: Session traces page
path: /docs/browser/browser-monitoring/browser-pro-features/session-traces-explore-webpages-life-cycle
- title: Filterable Geography page
path: /docs/browser/new-relic-browser/browser-pro-features/filterable-geography-webpage-metrics-location
- title: Browser data in distributed tracing
path: /docs/browser/new-relic-browser/browser-pro-features/browser-data-distributed-tracing
- title: Upload source maps
path: /docs/browser/browser-monitoring/browser-pro-features/upload-source-maps-un-minify-js-errors
- title: Source map API
path: /docs/browser/new-relic-browser/browser-pro-features/upload-source-maps-api
- title: Additional standard features
pages:
- title: Page views page
path: /docs/browser/new-relic-browser/additional-standard-features/page-views-examine-page-performance
- title: Browsers page
path: /docs/browser/new-relic-browser/additional-standard-features/browsers-problem-patterns-type-or-platform
- title: Geography page
path: /docs/browser/new-relic-browser/additional-standard-features/browser-geography-webpage-performance-location
- title: Performance quality
pages:
- title: Security for Browser
path: /docs/browser/new-relic-browser/performance-quality/security-browser-monitoring
- title: Browser monitoring and performance impact
path: /docs/browser/new-relic-browser/performance-quality/browser-monitoring-performance-impact
- title: Browser monitoring and SEO
path: /docs/browser/new-relic-browser/performance-quality/browser-monitoring-search-engine-optimization
- title: Troubleshooting
pages:
- title: Troubleshooting installation
path: /docs/browser/browser-monitoring/troubleshooting/troubleshoot-your-browser-monitoring-installation
- title: Data doesn't match other tools
path: /docs/browser/new-relic-browser/troubleshooting/browser-data-doesnt-match-other-analytics-tools
- title: View detailed error logs
path: /docs/browser/new-relic-browser/troubleshooting/view-detailed-error-logs-browser
- title: AJAX data collection
path: /docs/browser/new-relic-browser/troubleshooting/troubleshoot-ajax-data-collection
- title: Session trace collection
path: /docs/browser/new-relic-browser/troubleshooting/troubleshooting-session-trace-collection
- title: AngularJS errors do not appear
path: /docs/browser/new-relic-browser/troubleshooting/angularjs-errors-do-not-appear
- title: Accelerated mobile pages (AMP)
path: /docs/browser/new-relic-browser/troubleshooting/google-amp-validator-fails-due-3rd-party-script
- title: HAR data collection
path: /docs/browser/new-relic-browser/troubleshooting/get-browser-side-troubleshooting-details-har-file
- title: Not seeing specific page names
path: /docs/browser/new-relic-browser/troubleshooting/not-seeing-specific-page-or-endpoint-names-browser-data
- title: JavaScript injection causes problems
path: /docs/browser/new-relic-browser/troubleshooting/browser-javascript-injection-causes-problems-page
- title: JS errors missing traces
path: /docs/browser/new-relic-browser/troubleshooting/third-party-js-errors-missing-stack-traces
- title: RPM higher than PPM
path: /docs/browser/new-relic-browser/troubleshooting/app-server-requests-greatly-outnumber-browser-pageview-transactions
- title: AJAX call fails with a CORS redirect error message
path: /docs/browser/new-relic-browser/troubleshooting/ajax-call-fails-cors-redirect-error-message
- title: Infrastructure monitoring
path: /docs/infrastructure
pages:
- title: Get started
pages:
- title: Intro to infrastructure monitoring
path: /docs/infrastructure/infrastructure-monitoring/get-started/get-started-infrastructure-monitoring
- title: Get integrations
path: /docs/infrastructure/new-relic-infrastructure/getting-started/infrastructure-integrations
- title: Infrastructure agent release notes
path: /docs/infrastructure/new-relic-infrastructure/getting-started/infrastructure-agent-release-notes
- title: Infrastructure monitoring best practices guide
path: /docs/infrastructure/infrastructure-monitoring/guides/infrastructure-monitoring-best-practices-guide
- title: Infrastructure and security
path: /docs/infrastructure/infrastructure-monitoring/infrastructure-security/infrastructure-security
- title: Install the infrastructure agent
pages:
- title: Get started
pages:
- title: Install the agent
path: /docs/infrastructure/install-infrastructure-agent/get-started/install-infrastructure-agent
- title: Compatibility and requirements
path: /docs/infrastructure/install-infrastructure-agent/get-started/requirements-infrastructure-agent
- title: Linux installation
pages:
- title: Package manager install
path: /docs/infrastructure/install-infrastructure-agent/linux-installation/install-infrastructure-monitoring-agent-linux
- title: Docker instrumentation
path: /docs/infrastructure/install-infrastructure-agent/linux-installation/docker-instrumentation-infrastructure-monitoring
- title: Azure extensions for Infrastructure
path: /docs/infrastructure/install-infrastructure-agent/linux-installation/azure-extensions-infrastructure
- title: Install as a container
path: /docs/infrastructure/install-infrastructure-agent/linux-installation/docker-container-infrastructure-monitoring
- title: Tarball assisted install
path: /docs/infrastructure/install-infrastructure-agent/linux-installation/tarball-assisted-install-infrastructure-agent-linux
- title: Tarball manual install
path: /docs/infrastructure/install-infrastructure-agent/linux-installation/tarball-manual-install-infrastructure-agent-linux
- title: Agent running modes
path: /docs/infrastructure/install-infrastructure-agent/linux-installation/linux-agent-running-modes
- title: Windows installation
pages:
- title: MSI install (preferred)
path: /docs/infrastructure/install-infrastructure-agent/windows-installation/install-infrastructure-monitoring-agent-windows
- title: Zip assisted install
path: /docs/infrastructure/install-infrastructure-agent/windows-installation/zip-assisted-install-infrastructure-agent-windows
- title: Zip manual install
path: /docs/infrastructure/install-infrastructure-agent/windows-installation/zip-manual-install-infrastructure-agent-windows
- title: Config management tools
pages:
- title: Chef configuration
path: /docs/infrastructure/install-infrastructure-agent/config-management-tools/configure-infrastructure-agent-using-chef
- title: Ansible configuration
path: /docs/infrastructure/install-infrastructure-agent/config-management-tools/configure-infrastructure-agent-using-ansible
- title: Elastic Beanstalk configuration
path: /docs/infrastructure/install-infrastructure-agent/config-management-tools/configure-infrastructure-agent-aws-elastic-beanstalk
- title: Puppet Configuration
path: /docs/infrastructure/install-infrastructure-agent/config-management-tools/configure-infrastructure-agent-puppet
- title: Configuration
pages:
- title: Configure the agent
path: /docs/infrastructure/install-infrastructure-agent/configuration/configure-infrastructure-agent
- title: Config file template
path: /docs/infrastructure/install-infrastructure-agent/configuration/config-file-template-newrelic-infrayml
- title: Configuration settings
path: /docs/infrastructure/install-infrastructure-agent/configuration/infrastructure-agent-configuration-settings
- title: Manage data
path: /docs/infrastructure/install-infrastructure-agent/configuration/manage-data
- title: Manage your agent
pages:
- title: Agent behavior
path: /docs/infrastructure/install-infrastructure-agent/manage-your-agent/infrastructure-agent-behavior
- title: Stop or start the agent
path: /docs/infrastructure/install-infrastructure-agent/manage-your-agent/start-stop-restart-infrastructure-agent
- title: Agent overhead
path: /docs/infrastructure/install-infrastructure-agent/manage-your-agent/infrastructure-agent-performance-overhead
- title: Message size
path: /docs/infrastructure/install-infrastructure-agent/manage-your-agent/agent-message-size
- title: Troubleshooting the agent
path: /docs/infrastructure/install-infrastructure-agent/manage-your-agent/troubleshoot-running-infrastructure-agent
- title: Update or uninstall
pages:
- title: Update the agent
path: /docs/infrastructure/install-infrastructure-agent/update-or-uninstall/update-infrastructure-agent
- title: Uninstall the agent
path: /docs/infrastructure/install-infrastructure-agent/update-or-uninstall/uninstall-infrastructure-agent
- title: Uninstall infrastructure integrations
path: /docs/infrastructure/install-infrastructure-agent/update-or-uninstall/uninstall-infrastructure-integrations
- title: Manage your data
pages:
- title: Data and instrumentation
pages:
- title: Default infrastructure data
path: /docs/infrastructure/manage-your-data/data-instrumentation/default-infrastructure-monitoring-data
- title: Integration data
path: /docs/infrastructure/new-relic-infrastructure/data-instrumentation/integration-data
- title: On-host metrics
path: /docs/infrastructure/manage-your-data/data-instrumentation/host-integrations-metrics
- title: Manage data reporting
path: /docs/infrastructure/manage-your-data/data-instrumentation/manage-infrastructure-data-reporting
- title: APM data in Infrastructure
path: /docs/infrastructure/manage-your-data/data-instrumentation/apm-data-infrastructure-monitoring
- title: Filter and group
pages:
- title: Filter sets
path: /docs/infrastructure/new-relic-infrastructure/filter-group/filter-sets-organize-your-infrastructure-hosts
- title: Group by
path: /docs/infrastructure/new-relic-infrastructure/filter-group/group-infrastructure-results-specific-attributes
- title: Infrastructure alert conditions
pages:
- title: Alerts for infrastructure monitoring
path: /docs/infrastructure/new-relic-infrastructure/infrastructure-alert-conditions/infrastructure-alerts-add-edit-or-view-host-alert-information
- title: Infrastructure alerting examples
path: /docs/infrastructure/new-relic-infrastructure/infrastructure-alert-conditions/infrastructure-alerting-examples
- title: Host not reporting condition
path: /docs/infrastructure/infrastructure-alerts/infrastructure-alert-conditions/create-infrastructure-host-not-reporting-condition
- title: Process running condition
path: /docs/infrastructure/new-relic-infrastructure/infrastructure-alert-conditions/alert-infrastructure-processes
- title: Infrastructure alerts API
path: /docs/infrastructure/new-relic-infrastructure/infrastructure-alert-conditions/rest-api-calls-new-relic-infrastructure-alerts
- title: Infrastructure UI
pages:
- title: Hosts page
path: /docs/infrastructure/infrastructure-ui-pages/infrastructure-ui/infrastructure-hosts-page
- title: Inventory page
path: /docs/infrastructure/infrastructure-ui-pages/infra-ui-pages/infrastructure-inventory-page-search-your-entire-infrastructure
- title: Events page
path: /docs/infrastructure/new-relic-infrastructure/infrastructure-ui-pages/infrastructure-events-page-live-feed-every-config-change
- title: Events heatmap
path: /docs/infrastructure/new-relic-infrastructure/infrastructure-ui-pages/events-heatmap-examine-patterns-time-range
- title: Types of integrations
pages:
- title: Intro to integrations
path: /docs/infrastructure/integrations/types-integrations/intro-integrations
- title: Amazon/AWS integrations
path: /docs/integrations/amazon-integrations/aws-integrations-list
- title: Azure integrations
path: /docs/integrations/microsoft-azure-integrations/azure-integrations-list
- title: Google Cloud integrations
path: /docs/integrations/google-cloud-platform-integrations/gcp-integrations-list
- title: Kubernetes integration
path: /docs/infrastructure/integrations/types-integrations/introduction-kubernetes-integration
- title: On-host integrations
path: /docs/integrations/host-integrations/host-integrations-list
- title: Integrations SDK
path: /docs/infrastructure/integrations/types-integrations/integrations-sdk
- title: Infrastructure Integrations SDK
pages:
- title: Get started
pages:
- title: Introduction to Integrations SDK
path: /docs/create-integrations/infrastructure-integrations-sdk/get-started/introduction-infrastructure-integrations-sdk
- title: Compatibility and requirements
path: /docs/create-integrations/infrastructure-integrations-sdk/get-started/compatibility-requirements-infrastructure-integrations-sdk
- title: Understand and use data
path: /docs/infrastructure/integrations-sdk/understand-use-data/understand-use-integration-data
- title: Go integration tutorial and tools
path: /docs/create-integrations/infrastructure-integrations-sdk/get-started/go-language-integration-tutorial-build-tools
- title: Specifications
pages:
- title: Required files
path: /docs/create-integrations/infrastructure-integrations-sdk/specifications/host-integration-files
- title: Executable file and JSON specs
path: /docs/create-integrations/infrastructure-integrations-sdk/specifications/host-integration-executable-file-json-specifications
- title: Configuration overview
path: /docs/create-integrations/infrastructure-integrations-sdk/specifications/host-integration-configuration-overview
- title: Config specs (standard)
path: /docs/create-integrations/infrastructure-integrations-sdk/specifications/host-integrations-standard-configuration-format
- title: Config specs (new)
path: /docs/create-integrations/infrastructure-integrations-sdk/specifications/host-integrations-newer-configuration-format
- title: Integration logging
path: /docs/create-integrations/infrastructure-integrations-sdk/specifications/integration-logging-recommendations
- title: Troubleshooting
pages:
- title: Missing data
path: /docs/create-integrations/infrastructure-integrations-sdk/troubleshooting/not-seeing-infrastructure-integration-data
- title: Missing attributes
path: /docs/create-integrations/infrastructure-integrations-sdk/troubleshooting/not-seeing-attributes
- title: Infrastructure monitoring troubleshooting
pages:
- title: Troubleshoot infrastructure
pages:
- title: No data appears
path: /docs/infrastructure/infrastructure-troubleshooting/troubleshoot-infrastructure/no-data-appears-infrastructure
- title: APM data missing
path: /docs/infrastructure/new-relic-infrastructure/troubleshooting/apm-data-missing-infrastructure
- title: Reduce CPU footprint
path: /docs/infrastructure/new-relic-infrastructure/troubleshooting/reduce-infrastructure-agents-cpu-footprint
- title: HTTPS proxy configuration not working
path: /docs/infrastructure/new-relic-infrastructure/troubleshooting/https-proxy-configuration-missing
- title: Incorrect host name reported
path: /docs/infrastructure/new-relic-infrastructure/troubleshooting/incorrect-host-name-reported
- title: Time gaps with missing data
path: /docs/infrastructure/new-relic-infrastructure/troubleshooting/time-gaps-missing-data
- title: Troubleshoot logs
pages:
- title: Infrastructure logging behavior
path: /docs/infrastructure/infrastructure-troubleshooting/troubleshoot-logs/infrastructure-agent-logging-behavior
- title: 'Agent doesn''t start, no logs'
path: /docs/infrastructure/new-relic-infrastructure/troubleshooting/agent-not-starting-there-are-no-logs
- title: Generate troubleshooting logs
path: /docs/infrastructure/infrastructure-troubleshooting/troubleshoot-logs/generate-logs-troubleshooting-infrastructure
- title: Logs
path: /docs/logs
pages:
- title: Log management
path: /docs/logs
pages:
- title: Get started
pages:
- title: Get started with logs
path: /docs/logs/log-management/get-started/get-started-log-management
- title: Log management and security
path: /docs/logs/log-management/get-started/new-relics-log-management-security-privacy
- title: Enable Logs
pages:
- title: Enable log monitoring in New Relic
path: /docs/logs/log-monitoring/enable-logs/enable-log-monitoring-new-relic
- title: Configure logs in context with APM agents
path: /docs/logs/log-monitoring/enable-logs/configure-logs-context-apm-agents
- title: UI and data
pages:
- title: Logs UI
path: /docs/logs/log-management/ui-data/use-logs-ui
- title: Log patterns (beta)
path: /docs/logs/log-management/ui-data/find-unusual-logs-log-patterns-beta
- title: Query syntax for logs
path: /docs/logs/log-management/ui-data/query-syntax-logs
- title: Parsing
path: /docs/logs/log-management/ui-data/parsing
- title: Built-in parsing rules
path: /docs/logs/log-management/ui-data/built-log-parsing-rulesets
- title: Drop filter rules
path: /docs/logs/log-management/ui-data/drop-data-drop-filter-rules
- title: Log API
pages:
- title: Introduction to the Log API
path: /docs/logs/log-management/log-api/introduction-log-api
- title: TCP endpoint
path: /docs/logs/log-management/log-api/use-tcp-endpoint-forward-logs-new-relic
- title: Troubleshooting
pages:
- title: No data appears
path: /docs/logs/log-management/troubleshooting/no-log-data-appears-ui
- title: Log message is truncated
path: /docs/logs/log-management/troubleshooting/log-message-truncated
- title: JSON message not parsed
path: /docs/logs/new-relic-logs/troubleshooting/json-message-not-parsed
- title: Live tail logging
path: /docs/logs/log-management/troubleshooting/view-log-messages-real-time-live-tail
- title: Show surrounding logs
path: /docs/logs/log-management/troubleshooting/find-issues-cause-or-impact-surrounding-logs
- title: Logs in context
pages:
- title: New Relic Logs
pages:
- title: Introduction to log monitoring
path: /docs/logs/enable-log-management-new-relic/new-relic-logs/introduction-log-monitoring
- title: Enable log monitoring in New Relic
pages:
- title: Enable log management in New Relic
path: /docs/logs/enable-log-management-new-relic/enable-log-monitoring-new-relic/enable-log-management-new-relic
- title: Forward your logs using the infrastructure agent
path: /docs/logs/enable-log-management-new-relic/enable-log-monitoring-new-relic/forward-your-logs-using-infrastructure-agent
- title: AWS Lambda for CloudWatch logs
path: /docs/logs/enable-log-management-new-relic/enable-log-monitoring-new-relic/aws-lambda-sending-cloudwatch-logs
- title: Amazon S3 log shipper
path: /docs/logs/enable-log-management-new-relic/enable-log-monitoring-new-relic/aws-lambda-sending-logs-s3
- title: AWS FireLens plugin
path: /docs/logs/enable-log-management-new-relic/enable-log-monitoring-new-relic/aws-firelens-plugin-log-forwarding
- title: Fluentd plugin
path: /docs/logs/enable-log-management-new-relic/enable-log-monitoring-new-relic/fluentd-plugin-log-forwarding
- title: Fluent Bit plugin
path: /docs/logs/enable-log-management-new-relic/enable-log-monitoring-new-relic/fluent-bit-plugin-log-forwarding
- title: Amazon Kinesis Data Firehose streaming
path: /docs/logs/enable-log-management-new-relic/enable-log-monitoring-new-relic/stream-logs-using-kinesis-data-firehose
- title: Kubernetes plugin
path: /docs/logs/enable-log-management-new-relic/enable-log-monitoring-new-relic/kubernetes-plugin-log-forwarding
- title: Logstash plugin
path: /docs/logs/enable-log-management-new-relic/enable-log-monitoring-new-relic/logstash-plugin-log-forwarding
- title: Vector plugin
path: /docs/logs/enable-log-management-new-relic/enable-log-monitoring-new-relic/vector-output-sink-log-forwarding
- title: Stream logs from Heroku
path: /docs/logs/enable-log-management-new-relic/enable-log-monitoring-new-relic/heroku-log-forwarding
- title: Configure logs in context
pages:
- title: Configure logs in context
path: /docs/logs/enable-log-management-new-relic/configure-logs-context/configure-logs-context-apm-agents
- title: Logs in context for Java
pages:
- title: Configure logs in context for Java
path: /docs/logs/enable-log-management-new-relic/logs-context-java/configure-logs-context-java
- title: 'Java: Adding to the classpath'
path: /docs/logs/enable-log-monitoring-new-relic/logs-context-java/java-adding-classpath
- title: 'Java: Configure with Dropwizard'
path: /docs/logs/enable-log-management-new-relic/logs-context-java/java-configure-dropwizard
- title: 'Java: Configure with java-util-logging'
path: /docs/logs/enable-log-management-new-relic/logs-context-java/java-configure-javautillogging
- title: 'Java: Configure with Log4j 1.x'
path: /docs/logs/enable-log-management-new-relic/logs-context-java/java-configure-log4j-1x
- title: 'Java: Configure with Log4j 2.x'
path: /docs/logs/enable-log-management-new-relic/logs-context-java/java-configure-log4j-2x
- title: 'Java: Configure with Logback'
path: /docs/logs/enable-log-management-new-relic/logs-context-java/java-configure-logback
- title: 'Java: Configure with Spring and Spring Boot'
path: /docs/logs/enable-log-management-new-relic/logs-context-java/java-configure-spring-spring-boot
- title: Logs in context for Go
pages:
- title: Configure logs in context for Go
path: /docs/logs/enable-log-management-new-relic/logs-context-go/configure-logs-context-go
- title: Logs in context for .NET
pages:
- title: Configure logs in context for .NET
path: /docs/logs/enable-log-management-new-relic/logs-context-net/configure-logs-context-net
- title: '.NET: Configure with log4net'
path: /docs/logs/enable-log-management-new-relic/logs-context-net/net-configure-log4net
- title: '.NET: Configure with NLog'
path: /docs/logs/enable-log-management-new-relic/logs-context-net/net-configure-nlog
- title: '.NET: Configure with Serilog'
path: /docs/logs/enable-log-management-new-relic/logs-context-net/net-configure-serilog
- title: Logs in context for Node.js
pages:
- title: Configure logs in context for Node.js
path: /docs/logs/enable-log-management-new-relic/logs-context-nodejs/configure-logs-context-nodejs
- title: 'Node.js: Configure with Winston'
path: /docs/logs/enable-log-management-new-relic/logs-context-nodejs/nodejs-configure-winston
- title: Logs in context for PHP
pages:
- title: Configure logs in context for PHP
path: /docs/logs/enable-log-management-new-relic/logs-context-php/configure-logs-context-php
- title: Logs in context for Python
pages:
- title: Configure logs in context for Python
path: /docs/logs/enable-log-management-new-relic/logs-context-python/configure-logs-context-python
- title: Logs in context for Ruby
pages:
- title: Configure logs in context for Ruby
path: /docs/logs/enable-log-management-new-relic/logs-context-ruby/configure-logs-context-ruby
- title: Logs in context with agent APIs
pages:
- title: APM agent APIs for logs in context
path: /docs/logs/enable-log-management-new-relic/logs-context-agent-apis/annotate-logs-logs-context-using-apm-agent-apis
- title: Mobile monitoring
path: /docs/mobile-monitoring
pages:
- title: New Relic Mobile
pages:
- title: Get started
pages:
- title: Mobile monitoring
path: /docs/mobile-monitoring/new-relic-mobile/get-started/introduction-mobile-monitoring
- title: Mobile app alerts
path: /docs/mobile-monitoring/new-relic-mobile/get-started/mobile-monitoring-alert-information
- title: Data privacy and security
path: /docs/mobile-monitoring/new-relic-mobile/get-started/security-mobile-apps
- title: Maintenance
pages:
- title: Customize mobile app settings
path: /docs/mobile-monitoring/new-relic-mobile/maintenance/customizing-your-mobile-app-settings
- title: Add custom data
path: /docs/mobile-monitoring/new-relic-mobile/maintenance/add-custom-data-new-relic-mobile
- title: Mobile application token
path: /docs/mobile-monitoring/new-relic-mobile/maintenance/viewing-your-application-token
- title: Deleting a mobile app
path: /docs/mobile-monitoring/new-relic-mobile/maintenance/deleting-mobile-app
- title: Guides
pages:
- title: Mobile monitoring best practices
path: /docs/mobile-monitoring/new-relic-mobile/guides/mobile-monitoring-best-practices-guide
- title: Mobile monitoring UI
pages:
- title: Mobile App pages
pages:
- title: Mobile apps index
path: /docs/mobile-monitoring/mobile-monitoring-ui/mobile-app-pages/mobile-apps-index
- title: Mobile Apps Overview page
path: /docs/mobile-monitoring/mobile-monitoring-ui/mobile-app-pages/mobile-apps-overview-page
- title: Interactions page
path: /docs/mobile-monitoring/mobile-monitoring-ui/mobile-app-pages/interactions-page
- title: Devices page
path: /docs/mobile-monitoring/mobile-monitoring-ui/mobile-app-pages/devices-page
- title: OS versions page
path: /docs/mobile-monitoring/mobile-monitoring-ui/mobile-app-pages/os-versions-page
- title: Version trends
path: /docs/mobile-monitoring/mobile-monitoring-ui/mobile-app-pages/version-trends-compare-user-adoption-metrics-performance
- title: Email report settings
path: /docs/mobile-monitoring/mobile-monitoring-ui/mobile-app-pages/mobile-monitoring-email-notifications
- title: Alerts page
path: /docs/mobile-monitoring/mobile-monitoring-ui/mobile-app-pages/alerts-page-mobile-apps
- title: Network pages
pages:
- title: Analyze network requests
path: /docs/mobile-monitoring/mobile-monitoring-ui/network-pages/analyze-network-requests-using-mobilerequest-event-data
- title: HTTP errors page
path: /docs/mobile-monitoring/mobile-monitoring-ui/network-pages/http-errors-network-failure-analysis
- title: HTTP requests page
path: /docs/mobile-monitoring/mobile-monitoring-ui/network-pages/http-requests-page
- title: Carriers page
path: /docs/mobile-monitoring/mobile-monitoring-ui/network-pages/carriers-page
- title: Connection types page
path: /docs/mobile-monitoring/mobile-monitoring-ui/network-pages/connection-types-page
- title: Error profiles
path: /docs/mobile-monitoring/mobile-monitoring-ui/network-pages/mobile-http-error-profiles-find-error-causes
- title: Map page (deprecated)
path: /docs/mobile-monitoring/mobile-monitoring-ui/network-pages/map-page-mobile-apps-deprecated
- title: Geography page
path: /docs/mobile-monitoring/mobile-monitoring-ui/network-pages/geography-page-mobile-apps
- title: Querying MobileRequest events
path: /docs/mobile-monitoring/mobile-monitoring-ui/network-pages/mobilerequest-events
- title: Querying MobileRequestError events
path: /docs/mobile-monitoring/mobile-monitoring-ui/crashes/mobile-request-failures-query-examples-mobilerequesterror
- title: Crashes
pages:
- title: Crash analysis workflow
path: /docs/mobile-monitoring/mobile-monitoring-ui/crashes/crash-analysis-group-filter-your-crashes
- title: Mobile apps crash report
path: /docs/mobile-monitoring/mobile-monitoring-ui/crashes/investigate-mobile-app-crash-report
- title: Crash event trail
path: /docs/mobile-monitoring/mobile-monitoring-ui/crashes/mobile-crash-event-trail
- title: Troubleshoot unsymbolicated crashes
path: /docs/mobile-monitoring/mobile-monitoring-ui/crashes/find-build-uuids-unsymbolicated-crashes
- title: Mobile handled exceptions
path: /docs/mobile-monitoring/mobile-monitoring-ui/crashes/introduction-mobile-handled-exceptions
- title: Handled exceptions UI
path: /docs/mobile-monitoring/mobile-monitoring-ui/crashes/handled-exceptions-analyze-trends-prevent-crashes
- title: Occurrences
path: /docs/mobile-monitoring/mobile-monitoring-ui/crashes/handled-exceptions-occurrences
- title: Usage pages
pages:
- title: Versions analysis
path: /docs/mobile-monitoring/mobile-monitoring-ui/usage-pages/versions-analysis
- title: Monthly uniques report
path: /docs/mobile-monitoring/mobile-monitoring-ui/usage-pages/monthly-uniques-report
- title: New Relic Mobile Android
pages:
- title: Get started
pages:
- title: Compatibility and requirements
path: /docs/mobile-monitoring/new-relic-mobile-android/get-started/new-relic-android-compatibility-requirements
- title: New Relic Mobile for Android
path: /docs/mobile-monitoring/new-relic-mobile-android/get-started/introduction-new-relic-mobile-android
- title: Android distributed tracing
path: /docs/mobile-monitoring/new-relic-mobile-android/get-started/new-relic-mobile-and-dt
- title: Android release notes
path: /docs/mobile-monitoring/new-relic-mobile-android/get-started/android-release-notes
- title: Install configure
pages:
- title: Gradle and Android Studio installation
path: /docs/mobile-monitoring/new-relic-mobile-android/install-configure/install-android-apps-gradle-android-studio
- title: Configure the New Relic Gradle plugin
path: /docs/mobile-monitoring/new-relic-mobile-android/install-configure/configure-new-relic-gradle-plugin
- title: Configure ProGuard and DexGuard
path: /docs/mobile-monitoring/new-relic-mobile-android/install-configure/configure-proguard-or-dexguard-android-apps
- title: Android crash reporting
path: /docs/mobile-monitoring/new-relic-mobile-android/install-configure/android-agent-crash-reporting
- title: Installation for Instant Apps
path: /docs/mobile-monitoring/new-relic-mobile-android/install-configure/install-new-relic-plugin-android-instant-apps
- title: Update the Android SDK
path: /docs/mobile-monitoring/new-relic-mobile-android/install-configure/upgrade-new-relic-mobiles-android-sdk
- title: Android SDK API
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api
pages:
- title: View all methods
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/view-all-methods
- title: crashNow
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/crashnow-android-sdk-api
- title: currentSessionId
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/currentsessionid-android-sdk-api
- title: endInteraction
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/end-interaction
- title: incrementAttribute
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/increment-attribute
- title: noticeHttpTransaction
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/notice-http-transaction
- title: noticeNetworkFailure
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/notice-network-failure
- title: recordBreadcrumb
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/recordbreadcrumb
- title: recordCustomEvent
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/recordcustomevent-android-sdk-api
- title: recordHandledException
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/recordhandledexception-android-sdk-api
- title: recordMetric
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/recordmetric-android-sdk-api
- title: removeAllAttributes
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/remove-all-attributes
- title: removeAttribute
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/remove-attribute
- title: setAttribute
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/set-attribute
- title: setInteractionName
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/set-interaction-name
- title: setMaxEventBufferTime
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/set-max-event-buffer-time
- title: setMaxEventPoolSize
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/set-max-event-pool-size
- title: setUserId
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/set-user-id
- title: startInteraction
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/start-interaction
- title: withApplicationBuild
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/with-application-build
- title: withApplicationVersion
path: /docs/mobile-monitoring/new-relic-mobile-android/android-sdk-api/with-application-version
- title: withInteractionTracing