forked from newrelic/docs-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagents.yml
More file actions
1208 lines (1208 loc) · 69.7 KB
/
Copy pathagents.yml
File metadata and controls
1208 lines (1208 loc) · 69.7 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
title: Agents
path: /docs/agents
pages:
- title: Infrastructure agent
pages:
- title: Get started with infrastructure monitoring
path: /docs/infrastructure/infrastructure-monitoring/get-started/get-started-infrastructure-monitoring
- title: Install the infrastructure agent
path: /docs/infrastructure/install-infrastructure-agent/get-started/install-infrastructure-agent
- title: Configure the agent
path: /docs/infrastructure/install-infrastructure-agent/configuration/configure-infrastructure-agent
- title: Infrastructure integrations
path: /docs/integrations/infrastructure-integrations/get-started/introduction-infrastructure-integrations
- title: Manage APM agents
pages:
- title: Agent data
pages:
- title: Real time streaming
path: /docs/agents/manage-apm-agents/agent-data/real-time-streaming
- title: Custom instrumentation
path: /docs/agents/manage-apm-agents/agent-data/custom-instrumentation
- title: Agent attributes
path: /docs/agents/manage-apm-agents/agent-data/agent-attributes
- title: Custom events
path: /docs/agents/manage-apm-agents/agent-data/collect-custom-events
- title: Custom metrics
path: /docs/agents/manage-apm-agents/agent-data/collect-custom-metrics
- title: Manage errors
path: /docs/agents/manage-apm-agents/agent-data/manage-errors-apm-collect-ignore-or-mark-expected
- title: Link Kubernetes
path: /docs/agents/manage-apm-agents/agent-data/link-your-applications-kubernetes
- title: App naming
pages:
- title: Name your application
path: /docs/agents/manage-apm-agents/app-naming/name-your-application
- title: Use multiple names for an app
path: /docs/agents/manage-apm-agents/app-naming/use-multiple-names-app
- title: Configuration
pages:
- title: Server-side configuration
path: /docs/agents/manage-apm-agents/configuration/server-side-agent-configuration
- title: View config values for your app
path: /docs/agents/manage-apm-agents/configuration/view-config-values-your-app
- title: High security mode
path: /docs/agents/manage-apm-agents/configuration/high-security-mode
- title: Configurable security policies
path: /docs/agents/manage-apm-agents/configuration/enable-configurable-security-policies
- title: 'Add, rename, and remove hosts'
path: /docs/agents/manage-apm-agents/configuration/add-rename-remove-hosts
- title: Monitor background processes
path: /docs/agents/manage-apm-agents/configuration/monitor-background-processes
- title: Troubleshooting
pages:
- title: Configuration mismatch
path: /docs/agents/manage-apm-agents/troubleshooting/agent-nrintegrationerrors-appear-insights
- title: Environment and services
path: /docs/agents/manage-apm-agents/troubleshooting/get-environment-data-about-your-apm-app
- title: C SDK
path: /docs/agents/c-sdk
pages:
- title: Get started
pages:
- title: Introduction to the C SDK
path: /docs/agents/c-sdk/get-started/introduction-c-sdk
- title: Compatibility and requirements
path: /docs/agents/c-sdk/get-started/c-sdk-compatibility-requirements
- title: C SDK security
path: /docs/agents/c-sdk/get-started/apm-security-c-sdk
- title: Latest release
path: /docs/release-notes/agent-release-notes/c-sdk-release-notes/current
- title: C SDK release notes
path: /docs/agents/c-sdk/get-started/c-sdk-release-notes
- title: Install and configure
pages:
- title: Install (compile) the C SDK
path: /docs/agents/c-sdk/install-configure/install-c-sdk-compile-link-your-code
- title: Docker and other containers
path: /docs/agents/c-sdk/install-configure/docker-other-container-environments-install-c-sdk
- title: C SDK configuration
path: /docs/agents/c-sdk/install-configure/c-sdk-configuration
- title: Update your C SDK library
path: /docs/agents/c-sdk/install-configure/update-your-c-sdk-library
- title: Uninstall (remove) the C SDK
path: /docs/agents/c-sdk/install-configure/uninstall-remove-c-sdk
- title: Instrumentation
pages:
- title: Instrument your app
path: /docs/agents/c-sdk/instrumentation/instrument-your-app-c-sdk
- title: Enable distributed tracing for your C applications
path: /docs/agents/c-sdk/instrumentation/enable-distributed-tracing-your-c-applications
- title: Guide to using the C SDK API
path: /docs/agents/c-sdk/instrumentation/guide-using-c-sdk-api
- title: Use default or custom attributes
path: /docs/agents/c-sdk/instrumentation/use-default-or-custom-attributes-c-sdk
- title: Troubleshooting
pages:
- title: No data appears (C SDK)
path: /docs/agents/c-sdk/troubleshooting/no-data-appears-c-sdk
- title: Troubleshooting logs (C SDK)
path: /docs/agents/c-sdk/troubleshooting/generate-logs-troubleshooting-c-sdk
- title: Go agent
path: /docs/agents/go-agent
pages:
- title: Get started
pages:
- title: New Relic for Go
path: /docs/agents/go-agent/get-started/introduction-new-relic-go
- title: Compatibility and requirements
path: /docs/agents/go-agent/get-started/go-agent-compatibility-requirements
- title: Go agent security
path: /docs/agents/go-agent/get-started/apm-agent-security-go
- title: Latest release
path: /docs/release-notes/agent-release-notes/go-release-notes/current
- title: Go agent release notes
path: /docs/agents/go-agent/get-started/go-agent-release-notes
- title: Installation
pages:
- title: Install New Relic for Go
path: /docs/agents/go-agent/installation/install-new-relic-go
- title: Install in GAE flex
path: /docs/agents/go-agent/installation/install-go-agent-gae-flexible-environment
- title: Update the Go agent
path: /docs/agents/go-agent/installation/update-go-agent
- title: Uninstall the Go agent
path: /docs/agents/go-agent/installation/uninstall-go-agent
- title: Configuration
pages:
- title: Go configuration
path: /docs/agents/go-agent/configuration/go-agent-configuration
- title: Go agent logging
path: /docs/agents/go-agent/configuration/go-agent-logging
- title: Instrumentation
pages:
- title: Instrument Go transactions
path: /docs/agents/go-agent/instrumentation/instrument-go-transactions
- title: Instrument Go segments
path: /docs/agents/go-agent/instrumentation/instrument-go-segments
- title: Custom events
path: /docs/agents/go-agent/features/create-custom-events-go
- title: Go agent attributes
path: /docs/agents/go-agent/instrumentation/go-agent-attributes
- title: Create custom metrics in Go
path: /docs/agents/go-agent/instrumentation/create-custom-metrics-go
- title: API guides
pages:
- title: Go agent API guide
path: /docs/agents/go-agent/api-guides/guide-using-go-agent-api
- title: Features
pages:
- title: Go runtime UI page
path: /docs/agents/go-agent/features/go-runtime-page-troubleshoot-performance-problems
- title: Custom events
path: /docs/agents/go-agent/features/create-custom-events-go
- title: Add browser monitoring
path: /docs/agents/go-agent/features/add-browser-monitoring-your-go-apps
- title: Distributed tracing
path: /docs/agents/go-agent/features/enable-distributed-tracing-your-go-applications
- title: Cross application tracing
path: /docs/agents/go-agent/features/cross-application-tracing-go
- title: Trace asynchronous applications
path: /docs/agents/go-agent/features/trace-asynchronous-applications
- title: Troubleshooting
pages:
- title: No data appears
path: /docs/agents/go-agent/troubleshooting/no-data-appears-go
- title: Java agent
path: /docs/agents/java-agent
pages:
- title: Getting started
pages:
- title: New Relic for Java
path: /docs/agents/java-agent/getting-started/introduction-new-relic-java
- title: Compatibility and requirements
path: /docs/agents/java-agent/getting-started/compatibility-requirements-java-agent
- title: Java agent security
path: /docs/agents/java-agent/getting-started/apm-agent-security-java
- title: Latest release
path: /docs/release-notes/agent-release-notes/java-release-notes/current
- title: Java release notes
path: /docs/agents/java-agent/getting-started/java-release-notes
- title: Installation
pages:
- title: Install the Java agent
path: /docs/agents/java-agent/installation/install-java-agent
- title: Include agent with JVM
path: /docs/agents/java-agent/installation/include-java-agent-jvm-argument
- title: Update the Java agent
path: /docs/agents/java-agent/installation/update-java-agent
- title: Uninstall the Java agent
path: /docs/agents/java-agent/installation/uninstall-java-agent
- title: Additional installation
pages:
- title: Docker
path: /docs/agents/java-agent/additional-installation/install-new-relic-java-agent-docker
- title: AWS Elastic Beanstalk
path: /docs/agents/java-agent/additional-installation/aws-elastic-beanstalk-installation-java
- title: Ansible
path: /docs/agents/java-agent/additional-installation/install-new-relic-java-agent-ansible
- title: WildFly installation
path: /docs/agents/java-agent/additional-installation/wildfly-installation-java
- title: GAE flex
path: /docs/agents/java-agent/additional-installation/install-new-relic-java-agent-gae-flexible-environment
- title: WebSphere App Server
path: /docs/agents/java-agent/additional-installation/ibm-websphere-application-server
- title: Java 2 security installation
path: /docs/agents/java-agent/installation/install-java-agent-java-2-security
- title: Maven install
path: /docs/agents/java-agent/additional-installation/install-java-agent-using-maven
- title: Gradle installation
path: /docs/agents/java-agent/additional-installation/install-java-agent-using-gradle
- title: Heroku
pages:
- title: Java agent and Heroku
path: /docs/agents/java-agent/heroku/java-agent-heroku
- title: Scala and Heroku
path: /docs/agents/java-agent/heroku/java-agent-scala-heroku
- title: No data appears (Heroku)
path: /docs/agents/java-agent/heroku/no-data-appears-heroku-java
- title: Configuration
pages:
- title: Java agent configuration
path: /docs/agents/java-agent/configuration/java-agent-configuration-config-file
- title: Name your Java application
path: /docs/agents/java-agent/configuration/name-your-java-application
- title: Java agent config file template
path: /docs/agents/java-agent/configuration/java-agent-config-file-template
- title: Hostname logic
path: /docs/agents/java-agent/configuration/hostname-logic-java
- title: Distributed tracing
path: /docs/agents/java-agent/configuration/enable-distributed-tracing-java-agent
- title: Automatic application naming
path: /docs/agents/java-agent/configuration/automatic-application-naming
- title: Error configuration
path: /docs/agents/java-agent/configuration/java-agent-error-configuration
- title: Configuring your SSL certificates
path: /docs/agents/java-agent/configuration/configuring-your-ssl-certificates
- title: Features
pages:
- title: JVM metrics page (Java)
path: /docs/agents/java-agent/features/jvms-page-java-view-app-server-metrics-jmx
- title: Real-time profiling for Java
path: /docs/agents/java-agent/features/real-time-profiling-java-using-jfr-metrics
- title: Instrumentation
pages:
- title: Transaction naming protocol
path: /docs/agents/java-agent/instrumentation/transaction-naming-protocol
- title: Monitor deployments
path: /docs/agents/java-agent/instrumentation/monitor-deployments-java-agent
- title: Instrument webpages via API
path: /docs/agents/java-agent/instrumentation/instrument-browser-monitoring-java-agent-api
- title: Browser best practices
path: /docs/agents/java-agent/instrumentation/browser-monitoring-best-practices-java
- title: Instrument Kafka message queues
path: /docs/agents/java-agent/instrumentation/java-agent-instrument-kafka-message-queues
- title: Use RabbitMQ or JMS for message queues
path: /docs/agents/java-agent/instrumentation/use-rabbitmq-or-jms-message-queues
- title: Instrumentation modules
path: /docs/agents/java-agent/instrumentation/extension-additional-instrumentation-modules
- title: Ignore transactions
path: /docs/agents/java-agent/instrumentation/ignore-transactions-using-api
- title: Custom instrumentation
pages:
- title: Java custom instrumentation
path: /docs/agents/java-agent/custom-instrumentation/java-custom-instrumentation
- title: Custom instrumentation editor
path: /docs/agents/java-agent/custom-instrumentation/custom-instrumentation-editor-instrument-ui
- title: Scala instrumentation
path: /docs/agents/java-agent/frameworks/scala-installation-java
- title: Java instrumentation by XML
path: /docs/agents/java-agent/custom-instrumentation/java-instrumentation-xml
- title: XML instrumentation example
path: /docs/agents/java-agent/custom-instrumentation/java-xml-instrumentation-examples
- title: Custom JMX instrumentation
path: /docs/agents/java-agent/custom-instrumentation/java-agent-custom-jmx-instrumentation-yaml
- title: Custom JMX YAML examples
path: /docs/agents/java-agent/custom-instrumentation/custom-jmx-yaml-examples
- title: Troubleshooting Java custom instrumentation
path: /docs/agents/java-agent/custom-instrumentation/troubleshooting-java-custom-instrumentation
- title: Circuit breaker
path: /docs/agents/java-agent/custom-instrumentation/circuit-breaker-java-custom-instrumentation
- title: Messaging framework instrumentation
path: /docs/agents/java-agent/custom-instrumentation/messaging-framework-instrumentation
- title: Async instrumentation
pages:
- title: Async instrumentation
path: /docs/agents/java-agent/async-instrumentation/introduction-java-async-instrumentation
- title: Java async API
path: /docs/agents/java-agent/async-instrumentation/java-agent-api-asynchronous-applications
- title: Troubleshoot async
path: /docs/agents/java-agent/async-instrumentation/troubleshoot-java-asynchronous-instrumentation
- title: Disable async frameworks
path: /docs/agents/java-agent/async-instrumentation/disable-scala-netty-akka-play-2-instrumentation
- title: Attributes
pages:
- title: Java agent attributes
path: /docs/agents/java-agent/attributes/java-agent-attributes
- title: API guides
pages:
- title: Java agent API guide
path: /docs/agents/java-agent/api-guides/guide-using-java-agent-api
- title: Java agent API annotation
path: /docs/agents/java-agent/api-guides/java-agent-api-instrument-using-annotation
- title: 'API: Externals, messaging, frameworks'
path: /docs/agents/java-agent/api-guides/java-agent-api-instrument-external-calls-messaging-datastore-web-frameworks
- title: 'API: Annotating example app'
path: /docs/agents/java-agent/api-guides/java-agent-api-custom-instrumentation-annotation-example-app
- title: 'API example: Datastore and CAT'
path: /docs/agents/java-agent/api-guides/java-agent-api-instrumenting-example-app-external-datastore-calls-cat
- title: Troubleshooting
pages:
- title: No data appears
path: /docs/agents/java-agent/troubleshooting/no-data-appears-java
- title: Determine permissions requirements
path: /docs/agents/java-agent/troubleshooting/determine-permissions-requirements-java
- title: Gather troubleshooting information
path: /docs/agents/java-agent/troubleshooting/gather-troubleshooting-information-java
- title: All hosts appear as localhost
path: /docs/agents/java-agent/troubleshooting/all-hosts-appear-localhost
- title: Error bootstrapping Java agent
path: /docs/agents/java-agent/troubleshooting/error-bootstrapping-new-relic-java-agent
- title: Errors starting Java app server
path: /docs/agents/java-agent/troubleshooting/errors-starting-java-app-server
- title: Firewall or traffic connectivity failures
path: /docs/agents/java-agent/troubleshooting/firewall-or-traffic-connectivity-failures
- title: Generate logs for troubleshooting
path: /docs/agents/java-agent/troubleshooting/generate-debug-logs-troubleshooting-java
- title: Host links missing
path: /docs/agents/java-agent/troubleshooting/host-links-missing-java-apps-apm-summary
- title: Solr data does not appear
path: /docs/agents/java-agent/troubleshooting/java-solr-data-does-not-appear
- title: No Browser data appears
path: /docs/agents/java-agent/troubleshooting/no-browser-data-appears-java
- title: No log file
path: /docs/agents/java-agent/troubleshooting/no-log-file-java
- title: No stack traces
path: /docs/agents/java-agent/troubleshooting/no-stack-traces-java
- title: NullPointerException issues
path: /docs/agents/java-agent/troubleshooting/nullpointerexception-issues-java
- title: Resolve metric grouping issues
path: /docs/agents/java-agent/troubleshooting/resolve-metric-grouping-issues-java-apps
- title: SSL or connection errors
path: /docs/agents/java-agent/troubleshooting/ssl-or-connection-errors-java
- title: Update legacy Java config
path: /docs/agents/java-agent/troubleshooting/update-java-config-legacy-agent-versions
- title: Application server JMX setup
path: /docs/agents/java-agent/troubleshooting/application-server-jmx-setup
- title: Large number of false positive security vulnerabilities
path: /docs/agents/java-agent/troubleshooting/large-number-false-positive-security-vulnerabilities
- title: .NET agent
path: /docs/agents/net-agent
pages:
- title: Getting started
pages:
- title: New Relic for .NET
path: /docs/agents/net-agent/getting-started/introduction-new-relic-net
- title: Compatibility and requirements (Framework)
path: /docs/agents/net-agent/getting-started/net-agent-compatibility-requirements-net-framework
- title: Compatibility and requirements (Core)
path: /docs/agents/net-agent/getting-started/net-agent-compatibility-requirements-net-core
- title: 'APM agent security: .NET'
path: /docs/agents/net-agent/getting-started/apm-agent-security-net
- title: Latest release
path: /docs/release-notes/agent-release-notes/net-release-notes/current
- title: .NET release notes
path: /docs/agents/net-agent/getting-started/net-release-notes
- title: Installation
pages:
- title: Install introduction
path: /docs/agents/net-agent/installation/introduction-net-agent-install
- title: Install for Windows
path: /docs/agents/net-agent/installation/install-net-agent-windows
- title: Install for Linux
path: /docs/agents/net-agent/installation/install-net-agent-linux
- title: Update the agent
path: /docs/agents/net-agent/installation/update-net-agent
- title: Uninstall the agent
path: /docs/agents/net-agent/installation/uninstall-net-agent
- title: Azure installation
pages:
- title: Azure Cloud Services
path: /docs/agents/net-agent/azure-installation/install-net-agent-azure-cloud-services
- title: Azure Service Fabric
path: /docs/agents/net-agent/azure-installation/install-net-agent-azure-service-fabric
- title: Azure Web Apps
path: /docs/agents/net-agent/azure-installation/install-net-agent-azure-web-apps
- title: Azure Marketplace app
path: /docs/agents/net-agent/azure-installation/install-azure-marketplace-app-new-relic
- title: Azure troubleshooting
path: /docs/agents/net-agent/azure-installation/azure-troubleshooting
- title: Other installation
pages:
- title: ASP.NET Core
path: /docs/agents/net-agent/other-installation/install-net-agent-aspnet-core
- title: Install with NuGet
path: /docs/agents/net-agent/install-guides/install-net-agent-using-nuget
- title: Install for Docker
path: /docs/agents/net-agent/other-installation/install-net-agent-docker-container
- title: Install for WCF
path: /docs/agents/net-agent/other-installation/install-net-agent-windows-communication-foundation-wcf
- title: Install resources (advanced)
path: /docs/net-agent-install-resources
- title: How to verify the checksum of .NET Agent downloads
path: /docs/agents/net-agent/other-installation/how-verify-checksum-net-agent-downloads
- title: Configuration
pages:
- title: .NET agent configuration
path: /docs/agents/net-agent/configuration/net-agent-configuration
- title: Name your .NET application
path: /docs/agents/net-agent/configuration/name-your-net-application
- title: Other features
pages:
- title: Async support in .NET
path: /docs/agents/net-agent/other-features/async-support-net
- title: Limit log disk space
path: /docs/agents/net-agent/other-features/limit-log-disk-space-log-rolling
- title: Add Browser monitoring
path: /docs/agents/net-agent/other-features/browser-monitoring-net-agent
- title: .Net Performance Metrics
path: /docs/agents/net-agent/other-features/net-performance-metrics
- title: Custom instrumentation
pages:
- title: Introduction to .NET custom instrumentation
path: /docs/agents/net-agent/custom-instrumentation/introduction-net-custom-instrumentation
- title: Attribute custom instrumentation
path: /docs/agents/net-agent/custom-instrumentation/custom-instrumentation-attributes-net
- title: XML to create transactions
path: /docs/agents/net-agent/custom-instrumentation/create-transactions-xml-net
- title: XML to add detail
path: /docs/agents/net-agent/custom-instrumentation/add-detail-transactions-xml-net
- title: API guides
pages:
- title: .NET agent API guide
path: /docs/agents/net-agent/api-guides/guide-using-net-agent-api
- title: NET agent API
path: /docs/agents/net-agent/net-agent-api
pages:
- title: View all methods
path: /docs/agents/net-agent/net-agent-api/view-all-methods
- title: AddCustomParameter
path: /docs/agents/net-agent/net-agent-api/addcustomparameter-net-agent-api
- title: DisableBrowserMonitoring
path: /docs/agents/net-agent/net-agent-api/disablebrowsermonitoring-net-agent-api
- title: GetAgent
path: /docs/agents/net-agent/net-agent-api/getagent
- title: GetBrowserTimingHeader
path: /docs/agents/net-agent/net-agent-api/getbrowsertimingheader-net-agent-api
- title: GetLinkingMetadata
path: /docs/agents/net-agent/net-agent-api/getlinkingmetadata-net-agent-api
- title: IAgent
path: /docs/agents/net-agent/net-agent-api/iagent
- title: IDistributedTracePayload
path: /docs/agents/net-agent/net-agent-api/idistributedtracepayload-net-agent-api
- title: ITransaction
path: /docs/agents/net-agent/net-agent-api/itransaction
- title: ISpan
path: /docs/agents/net-agent/net-agent-api/ispan
- title: IgnoreApdex
path: /docs/agents/net-agent/net-agent-api/ignore-apdex
- title: IgnoreTransaction
path: /docs/agents/net-agent/net-agent-api/ignore-transaction
- title: NoticeError
path: /docs/agents/net-agent/net-agent-api/noticeerror-net-agent-api
- title: IncrementCounter
path: /docs/agents/net-agent/net-agent-api/incrementcounter-net-agent-api
- title: RecordCustomEvent
path: /docs/agents/net-agent/net-agent-api/recordcustomevent-net-agent-api
- title: RecordMetric
path: /docs/agents/net-agent/net-agent-api/recordmetric-net-agent-api
- title: RecordResponseTimeMetric
path: /docs/agents/net-agent/net-agent-api/recordresponsetimemetric-net-agent-api
- title: SetApplicationName
path: /docs/agents/net-agent/net-agent-api/set-application-name
- title: SetTransactionName
path: /docs/agents/net-agent/net-agent-api/settransactionname-net-agent-api
- title: SetTransactionUri
path: /docs/agents/net-agent/net-agent-api/set-transaction-uri
- title: SetUserParameters
path: /docs/agents/net-agent/net-agent-api/set-user-parameters
- title: StartAgent
path: /docs/agents/net-agent/net-agent-api/start-agent
- title: TraceMetadata
path: /docs/agents/net-agent/net-agent-api/tracemetadata-net-agent-api-0
- title: Attributes
pages:
- title: .NET agent attributes
path: /docs/agents/net-agent/attributes/net-agent-attributes
- title: Custom attributes (.NET)
path: /docs/agents/net-agent/attributes/custom-attributes-net
- title: .NET attribute examples
path: /docs/agents/net-agent/attributes/net-attribute-examples
- title: Enable and disable attributes
path: /docs/agents/net-agent/attributes/enable-disable-attributes-net
- title: Azure troubleshooting
pages:
- title: 'Azure Cloud Services: No data appears'
path: /docs/agents/net-agent/azure-troubleshooting/azure-cloud-services-no-data-appears
- title: 'Azure Web Apps: No data appears'
path: /docs/agents/net-agent/azure-troubleshooting/azure-web-apps-using-always-no-data-appears
- title: 'Azure Web Apps: Unable to open log file'
path: /docs/agents/net-agent/azure-troubleshooting/azure-web-apps-unable-open-log-file
- title: Profiler .dll locks during deployment
path: /docs/agents/net-agent/azure-troubleshooting/azure-web-apps-profiler-dll-locks-during-deployment
- title: No data with Microsoft App Insights
path: /docs/agents/net-agent/azure-troubleshooting/no-data-reporting-microsoft-application-insights
- title: Troubleshooting
pages:
- title: Azure Pipelines wipes out NewRelic.Azure.WebSites.Extension directories
path: /docs/agents/net-agent/troubleshooting/azure-pipelines-wipes-out-newrelicazurewebsitesextension-directories
- title: No data appears
path: /docs/agents/net-agent/troubleshooting/no-data-appears-net
- title: Agent changes Content-Type header for WCF apps (.NET)
path: /docs/agents/net-agent/troubleshooting/agent-changes-content-type-header-wcf-apps-net
- title: Support for Framework 4.0 or lower
path: /docs/agents/net-agent/troubleshooting/technical-support-net-framework-40-or-lower
- title: Generate logs for troubleshooting
path: /docs/agents/net-agent/troubleshooting/generate-logs-troubleshooting-net
- title: Debugging the .NET Core Agent on Linux
path: /docs/agents/net-agent/troubleshooting/debugging-net-core-agent-linux
- title: No Browser data appears
path: /docs/agents/net-agent/troubleshooting/no-browser-data-appears-net
- title: Profiler conflicts
path: /docs/agents/net-agent/troubleshooting/profiler-conflicts
- title: Handled errors reported
path: /docs/agents/net-agent/troubleshooting/net-agent-reports-handled-errors
- title: No data and registry key permission issues
path: /docs/agents/net-agent/troubleshooting/no-data-registry-key-permission-issues
- title: High memory usage
path: /docs/agents/net-agent/troubleshooting/high-memory-usage-net
- title: 'Browser injection: Health check conflict'
path: /docs/agents/net-agent/troubleshooting/browser-injection-health-check-conflict
- title: 'CoCreate errors: No event log'
path: /docs/agents/net-agent/troubleshooting/cocreate-errors-no-event-log
- title: 'CoCreateInstance errors: No profiler log'
path: /docs/agents/net-agent/troubleshooting/cocreateinstance-errors-no-profiler-log
- title: Missing async metrics
path: /docs/agents/net-agent/troubleshooting/missing-net-async-metrics
- title: Missing Couchbase metrics
path: /docs/agents/net-agent/troubleshooting/missing-couchbase-metrics-net
- title: Status monitor
path: /docs/agents/net-agent/troubleshooting/new-relic-net-status-monitor
- title: Monitor short-lived processes
path: /docs/agents/net-agent/troubleshooting/monitor-short-lived-net-processes
- title: No data after disabling TLS 1.0
path: /docs/agents/net-agent/troubleshooting/no-data-appears-after-disabling-tls-10
- title: Resolve .NET and SCOM conflicts
path: /docs/agents/net-agent/troubleshooting/resolve-net-scom-conflicts
- title: Node.js agent
path: /docs/agents/nodejs-agent
pages:
- title: Getting started
pages:
- title: New Relic for Node.js
path: /docs/agents/nodejs-agent/getting-started/introduction-new-relic-nodejs
- title: Compatibility and requirements
path: /docs/agents/nodejs-agent/getting-started/compatibility-requirements-nodejs-agent
- title: Node.js agent security
path: /docs/agents/nodejs-agent/getting-started/apm-agent-security-nodejs
- title: Latest release
path: /docs/release-notes/agent-release-notes/nodejs-release-notes/current
- title: Node.js release notes
path: /docs/agents/nodejs-agent/getting-started/nodejs-release-notes
- title: Installation and configuration
pages:
- title: Install the Node.js agent
path: /docs/agents/nodejs-agent/installation-configuration/install-nodejs-agent
- title: Install Node.js agent for Docker
path: /docs/agents/nodejs-agent/installation-configuration/install-nodejs-agent-docker
- title: Node.js agent configuration
path: /docs/agents/nodejs-agent/installation-configuration/nodejs-agent-configuration
- title: Update the Node.js agent
path: /docs/agents/nodejs-agent/installation-configuration/update-nodejs-agent
- title: Uninstall the agent
path: /docs/agents/nodejs-agent/installation-configuration/uninstall-nodejs-agent
- title: Extend your instrumentation
pages:
- title: Node.js custom instrumentation
path: /docs/agents/nodejs-agent/extend-your-instrumentation/nodejs-custom-instrumentation
- title: Node.js custom metrics
path: /docs/agents/nodejs-agent/extend-your-instrumentation/nodejs-custom-metrics
- title: Apollo Server plugin
path: /docs/agents/nodejs-agent/extend-your-instrumentation/apollo-server-plugin-nodejs
- title: Node.js VMs statistics page
path: /docs/agents/nodejs-agent/extend-your-instrumentation/nodejs-vms-statistics-page
- title: Distributed tracing
path: /docs/agents/nodejs-agent/supported-features/enable-distributed-tracing-nodejs-agent
- title: Message queues
path: /docs/agents/nodejs-agent/extend-your-instrumentation/message-queues
- title: Browser monitoring
path: /docs/agents/nodejs-agent/extend-your-instrumentation/browser-monitoring-nodejs-agent
- title: Node.js VM measurements
path: /docs/agents/nodejs-agent/extend-your-instrumentation/nodejs-vm-measurements
- title: Node.js v1 custom instrumentation
path: /docs/agents/nodejs-agent/extend-your-instrumentation/nodejs-v1-custom-instrumentation-legacy
- title: Attributes
pages:
- title: Node.js agent attributes
path: /docs/agents/nodejs-agent/attributes/nodejs-agent-attributes
- title: API guides
pages:
- title: Guide to Node.js agent API
path: /docs/agents/nodejs-agent/api-guides/guide-using-nodejs-agent-api
- title: Node.js agent API
path: /docs/agents/nodejs-agent/api-guides/nodejs-agent-api
- title: Hosting services
pages:
- title: GAE flex
path: /docs/agents/nodejs-agent/hosting-services/install-new-relic-nodejs-agent-gae-flexible-environment
- title: Install on Azure Web Apps
path: /docs/agents/nodejs-agent/hosting-services/nodejs-agent-microsoft-azure
- title: Node.js agent and Heroku
path: /docs/agents/nodejs-agent/hosting-services/nodejs-agent-heroku
- title: Troubleshooting
pages:
- title: Troubleshoot your installation
path: /docs/agents/nodejs-agent/troubleshooting/troubleshoot-your-nodejs-installation
- title: Logs for troubleshooting
path: /docs/agents/nodejs-agent/troubleshooting/generate-trace-log-troubleshooting-nodejs
- title: Troubleshoot message consumers
path: /docs/agents/nodejs-agent/troubleshooting/troubleshoot-message-consumers
- title: Large memory usage
path: /docs/agents/nodejs-agent/troubleshooting/troubleshooting-large-memory-usage-nodejs
- title: Troubleshoot Browser
path: /docs/agents/nodejs-agent/troubleshooting/troubleshoot-browser-instrumentation-nodejs
- title: PHP agent
path: /docs/agents/php-agent
pages:
- title: Getting started
pages:
- title: New Relic for PHP
path: /docs/agents/php-agent/getting-started/introduction-new-relic-php
- title: Compatibility and requirements
path: /docs/agents/php-agent/getting-started/php-agent-compatibility-requirements
- title: New Relic daemon processes
path: /docs/agents/php-agent/getting-started/new-relic-daemon-processes
- title: PHP agent security
path: /docs/agents/php-agent/getting-started/apm-agent-security-php
- title: Latest release
path: /docs/release-notes/agent-release-notes/php-release-notes/current
- title: PHP agent release notes
path: /docs/agents/php-agent/getting-started/php-agent-release-notes
- title: Installation
pages:
- title: Installation overview
path: /docs/agents/php-agent/installation/php-agent-installation-overview
- title: 'AWS Linux, RedHat, CentOS'
path: /docs/agents/php-agent/installation/php-agent-installation-aws-linux-redhat-centos
- title: Ubuntu and Debian
path: /docs/agents/php-agent/installation/php-agent-installation-ubuntu-debian
- title: Tar archive
path: /docs/agents/php-agent/installation/php-agent-installation-tar-file
- title: Install agent on shared hosting service
path: /docs/agents/php-agent/installation/install-php-agent-shared-hosting-service
- title: Update the PHP agent
path: /docs/agents/php-agent/installation/update-php-agent
- title: Advanced installation
pages:
- title: newrelic-install script
path: /docs/agents/php-agent/advanced-installation/use-newrelic-install-script-php
- title: Docker or other containers with PHP
path: /docs/agents/php-agent/advanced-installation/docker-other-container-environments-install-php-agent
- title: Starting the PHP daemon
path: /docs/agents/php-agent/advanced-installation/starting-php-daemon-advanced
- title: Silent mode newrelic-install script
path: /docs/agents/php-agent/advanced-installation/silent-mode-install-script-advanced
- title: Non-standard PHP
path: /docs/agents/php-agent/advanced-installation/php-agent-installation-non-standard-php-advanced
- title: PHP agent and Heroku
path: /docs/agents/php-agent/advanced-installation/php-agent-heroku
- title: Uninstall the agent
path: /docs/agents/php-agent/advanced-installation/uninstalling-php-agent
- title: Configuration
pages:
- title: PHP agent configuration
path: /docs/agents/php-agent/configuration/php-agent-configuration
- title: Per-Directory INI settings
path: /docs/agents/php-agent/configuration/php-directory-ini-settings
- title: Name your PHP app
path: /docs/agents/php-agent/configuration/name-your-php-application
- title: Proxy daemon settings
path: /docs/agents/php-agent/configuration/proxy-daemon-newreliccfg-settings
- title: API guides
pages:
- title: API guide
path: /docs/agents/php-agent/api-guides/guide-using-php-agent-api
- title: PHP agent API
path: /docs/agents/php-agent/php-agent-api
pages:
- title: View all methods
path: /docs/agents/php-agent/php-agent-api/view-all-methods
- title: newrelic_accept_distributed_trace_headers
path: /docs/agents/php-agent/php-agent-api/newrelicacceptdistributedtraceheaders
- title: newrelic_accept_distributed_trace_payload
path: /docs/agents/php-agent/php-agent-api/newrelicacceptdistributedtracepayload-php-agent-api
- title: newrelic_accept_distributed_trace_payload_httpsafe
path: /docs/agents/php-agent/php-agent-api/newrelicacceptdistributedtracepayloadhttpsafe-php-agent-api
- title: newrelic_add_custom_parameter
path: /docs/agents/php-agent/php-agent-api/newrelic_add_custom_parameter
- title: newrelic_add_custom_span_parameter
path: /docs/agents/php-agent/php-agent-api/newrelicaddcustomspanparameter-php-agent-api
- title: newrelic_add_custom_tracer
path: /docs/agents/php-agent/php-agent-api/newrelic_add_custom_tracer
- title: newrelic_background_job
path: /docs/agents/php-agent/php-agent-api/newrelic_background_job
- title: newrelic_capture_params
path: /docs/agents/php-agent/php-agent-api/newrelic_capture_params
- title: newrelic_create_distributed_trace_payload
path: /docs/agents/php-agent/php-agent-api/newreliccreatedistributedtracepayload-php-agent-api
- title: newrelic_custom_metric
path: /docs/agents/php-agent/php-agent-api/newreliccustommetric-php-agent-api
- title: newrelic_disable_autorum
path: /docs/agents/php-agent/php-agent-api/newrelic_disable_autorum
- title: newrelic_end_of_transaction
path: /docs/agents/php-agent/php-agent-api/newrelic_end_of_transaction
- title: newrelic_end_transaction
path: /docs/agents/php-agent/php-agent-api/newrelic_end_transaction
- title: newrelic_get_browser_timing_footer
path: /docs/agents/php-agent/php-agent-api/newrelic_get_browser_timing_footer
- title: newrelic_get_browser_timing_header
path: /docs/agents/php-agent/php-agent-api/newrelic_get_browser_timing_header
- title: newrelic_get_linking_metadata
path: /docs/agents/php-agent/php-agent-api/newrelicgetlinkingmetadata
- title: newrelic_get_trace_metadata
path: /docs/agents/php-agent/php-agent-api/newrelicgettracemetadata
- title: newrelic_ignore_apdex
path: /docs/agents/php-agent/php-agent-api/newrelic_ignore_apdex
- title: newrelic_ignore_transaction
path: /docs/agents/php-agent/php-agent-api/newrelic_ignore_transaction
- title: newrelic_insert_distributed_trace_headers
path: /docs/agents/php-agent/php-agent-api/newrelicinsertdistributedtraceheaders
- title: newrelic_is_sampled
path: /docs/agents/php-agent/php-agent-api/newrelicissampled
- title: newrelic_name_transaction
path: /docs/agents/php-agent/php-agent-api/newrelic_name_transaction
- title: newrelic_notice_error
path: /docs/agents/php-agent/php-agent-api/newrelic_notice_error
- title: newrelic_record_custom_event
path: /docs/agents/php-agent/php-agent-api/newrelic_record_custom_event
- title: newrelic_record_datastore_segment
path: /docs/agents/php-agent/php-agent-api/newrelic_record_datastore_segment
- title: newrelic_set_appname
path: /docs/agents/php-agent/php-agent-api/newrelic_set_appname
- title: newrelic_set_user_attributes
path: /docs/agents/php-agent/php-agent-api/newrelic_set_user_attributes
- title: newrelic_start_transaction
path: /docs/agents/php-agent/php-agent-api/newrelic_start_transaction
- title: Attributes
pages:
- title: PHP agent attributes
path: /docs/agents/php-agent/attributes/php-agent-attributes
- title: Enable or disable attributes
path: /docs/agents/php-agent/attributes/enable-or-disable-attributes
- title: Attribute examples
path: /docs/agents/php-agent/attributes/attribute-examples
- title: Features
pages:
- title: Multiple accounts
path: /docs/agents/php-agent/features/multiple-accounts
- title: Distributed tracing
path: /docs/agents/php-agent/features/distributed-tracing-php-agent
- title: Browser monitoring
path: /docs/agents/php-agent/features/browser-monitoring-php-agent
- title: PHP custom instrumentation
path: /docs/agents/php-agent/features/php-custom-instrumentation
- title: Recording deployments
path: /docs/agents/php-agent/features/recording-deployments-using-php-script
- title: Frameworks and libraries
pages:
- title: Integrate support for New Relic
path: /docs/agents/php-agent/frameworks-libraries/php-frameworks-integrate-support-new-relic
- title: Analyze PHPUnit test data in New Relic
path: /docs/agents/php-agent/frameworks-libraries/analyze-phpunit-test-data-new-relic
- title: AWS Elastic Beanstalk installation
path: /docs/agents/php-agent/frameworks-libraries/aws-elastic-beanstalk-installation-php
- title: Drupal-specific functionality
path: /docs/agents/php-agent/frameworks-libraries/drupal-specific-functionality
- title: Guzzle
path: /docs/agents/php-agent/frameworks-libraries/guzzle
- title: Magento-specific functionality
path: /docs/agents/php-agent/frameworks-libraries/magento-specific-functionality
- title: Predis library
path: /docs/agents/php-agent/frameworks-libraries/predis-library-php
- title: WordPress specific functionality
path: /docs/agents/php-agent/frameworks-libraries/wordpress-specific-functionality
- title: Troubleshooting
pages:
- title: No data appears
path: /docs/agents/php-agent/troubleshooting/no-data-appears-php
- title: Agent not reporting errors
path: /docs/agents/php-agent/troubleshooting/php-agent-not-reporting-errors
- title: Determine permissions requirements
path: /docs/agents/php-agent/troubleshooting/determine-permissions-requirements-php
- title: Generating logs for troubleshooting
path: /docs/agents/php-agent/troubleshooting/generating-logs-troubleshooting-php
- title: Data stops reporting while using SELinux
path: /docs/agents/php-agent/troubleshooting/data-stops-reporting-while-using-selinux
- title: Agents stops after updating PHP
path: /docs/agents/php-agent/troubleshooting/agent-stops-working-after-updating-php
- title: Checking loaded configuration files directory
path: /docs/agents/php-agent/troubleshooting/checking-loaded-configuration-files-directory
- title: Missing PHP module
path: /docs/agents/php-agent/troubleshooting/missing-php-module
- title: Protocol mismatch error
path: /docs/agents/php-agent/troubleshooting/protocol-mismatch-error
- title: INI settings not taking effect immediately
path: /docs/agents/php-agent/troubleshooting/ini-settings-not-taking-effect-immediately
- title: Submitting troubleshooting results
path: /docs/agents/php-agent/troubleshooting/submitting-troubleshooting-results-php
- title: Threaded Apache worker MPMs
path: /docs/agents/php-agent/troubleshooting/threaded-apache-worker-mpms
- title: Transactions /index.php or /unknown
path: /docs/agents/php-agent/troubleshooting/transactions-named-indexphp-or-unknown
- title: What the PHP instance count means
path: /docs/agents/php-agent/troubleshooting/troubleshoot-php-agent-instance-count
- title: Uninstrumented time in traces
path: /docs/agents/php-agent/troubleshooting/uninstrumented-time-traces
- title: Using phpinfo to verify PHP
path: /docs/agents/php-agent/troubleshooting/using-phpinfo-verify-php
- title: Verifying the PHP daemon
path: /docs/agents/php-agent/troubleshooting/verifying-php-daemon
- title: When to restart your web server
path: /docs/agents/php-agent/troubleshooting/why-when-restart-your-web-server-php
- title: PHP installation fails on El Capitan
path: /docs/agents/php-agent/troubleshooting/php-installation-fails-os-x-1011-el-capitan
- title: Data stops reporting
path: /docs/agents/php-agent/troubleshooting/data-stops-reporting
- title: First transaction not reported
path: /docs/agents/php-agent/troubleshooting/first-php-transaction-not-reported
- title: Python agent
path: /docs/agents/python-agent
pages:
- title: Getting started
pages:
- title: New Relic for Python
path: /docs/agents/python-agent/getting-started/introduction-new-relic-python
- title: Compatibility and requirements
path: /docs/agents/python-agent/getting-started/compatibility-requirements-python-agent
- title: Instrumented Python packages
path: /docs/agents/python-agent/getting-started/instrumented-python-packages
- title: Python agent security
path: /docs/agents/python-agent/getting-started/apm-agent-security-python
- title: Latest release
path: /docs/release-notes/agent-release-notes/python-release-notes/current
- title: Python release notes
path: /docs/agents/python-agent/getting-started/python-release-notes
- title: Installation
pages:
- title: Standard install
path: /docs/agents/python-agent/installation/standard-python-agent-install
- title: Advanced install
path: /docs/agents/python-agent/installation/advanced-install-new-relic-python-agent
- title: Install the Python agent for Docker
path: /docs/agents/python-agent/installation/install-python-agent-docker
- title: Advanced integration
path: /docs/agents/python-agent/installation/python-agent-advanced-integration
- title: Update the Python agent
path: /docs/agents/python-agent/installation/update-python-agent
- title: 'Admin script: Advanced use'
path: /docs/agents/python-agent/installation/python-agent-admin-script-advanced-usage
- title: Uninstall the Python agent
path: /docs/agents/python-agent/installation/uninstall-python-agent
- title: Supported features
pages:
- title: Custom metrics
path: /docs/agents/python-agent/supported-features/python-custom-metrics
- title: Message queues
path: /docs/agents/python-agent/supported-features/python-message-queues
- title: Event loop diagnostics
path: /docs/agents/python-agent/supported-features/python-event-loop-diagnostics
- title: Browser monitoring
path: /docs/agents/python-agent/supported-features/browser-monitoring-python-agent
- title: Monitor scripts and functions
path: /docs/agents/python-agent/supported-features/monitor-non-web-scripts-worker-processes-tasks-functions
- title: Tips and tricks
path: /docs/agents/python-agent/supported-features/python-tips-tricks
- title: Cross application tracing
path: /docs/agents/python-agent/supported-features/cross-application-tracing
- title: Browser and Django templates
path: /docs/agents/python-agent/supported-features/optional-manual-browser-instrumentation-django-templates
- title: Back-end services
pages:
- title: Celery back-end service
path: /docs/agents/python-agent/back-end-services/python-agent-celery
- title: API guides
pages:
- title: Guide to the API
path: /docs/agents/python-agent/api-guides/guide-using-python-agent-api
- title: Python agent API
path: /docs/agents/python-agent/python-agent-api
pages:
- title: View all calls
path: /docs/agents/python-agent/python-agent-api/view-all-python-agent-api-calls
- title: add_custom_parameter
path: /docs/agents/python-agent/python-agent-api/addcustomparameter-python-agent-api
- title: add_custom_parameters
path: /docs/agents/python-agent/python-agent-api/addcustomparameters-python-agent-api
- title: add_custom_span_attribute
path: /docs/agents/python-agent/python-agent-api/addcustomspanattribute-python-agent-api
- title: application
path: /docs/agents/python-agent/python-agent-api/application-python-agent-api
- title: application_settings
path: /docs/agents/python-agent/python-agent-api/applicationsettings-python-agent-api
- title: background_task
path: /docs/agents/python-agent/python-agent-api/backgroundtask-python-agent-api
- title: web_transaction
path: /docs/agents/python-agent/python-agent-api/webtransaction
- title: callable_name
path: /docs/agents/python-agent/python-agent-api/callablename-python-agent-api
- title: capture_request_params
path: /docs/agents/python-agent/python-agent-api/capturerequestparams-python-agent-api
- title: current_transaction
path: /docs/agents/python-agent/python-agent-api/currenttransaction-python-agent-api
- title: create_distributed_trace_payload
path: /docs/agents/python-agent/python-agent-api/createdistributedtracepayload-python-agent-api
- title: accept_distributed_trace_payload
path: /docs/agents/python-agent/python-agent-api/acceptdistributedtracepayload-python-agent-api
- title: insert_distributed_trace_headers
path: /docs/agents/python-agent/python-agent-api/insertdistributedtraceheaders-python-agent-api
- title: accept_distributed_trace_headers
path: /docs/agents/python-agent/python-agent-api/acceptdistributedtraceheaders-python-agent-api
- title: datastore_trace
path: /docs/agents/python-agent/python-agent-api/datastoretrace-python-agent-api
- title: data_source_factory
path: /docs/agents/python-agent/python-agent-api/datasourcefactory-python-agent-api
- title: data_source_generator
path: /docs/agents/python-agent/python-agent-api/datasourcegenerator-python-agent-api
- title: disable_browser_autorum
path: /docs/agents/python-agent/python-agent-api/disablebrowserautorum-python-agent-api
- title: end_of_transaction
path: /docs/agents/python-agent/python-agent-api/endoftransaction-python-agent-api
- title: external_trace
path: /docs/agents/python-agent/python-agent-api/externaltrace-python-agent-api
- title: function_trace
path: /docs/agents/python-agent/python-agent-api/functiontrace-python-agent-api
- title: get_browser_timing_footer
path: /docs/agents/python-agent/python-agent-api/getbrowsertimingfooter-python-agent-api
- title: get_browser_timing_header
path: /docs/agents/python-agent/python-agent-api/getbrowsertimingheader-python-agent-api
- title: get_linking_metadata
path: /docs/agents/python-agent/python-agent-api/getlinkingmetadata-python-agent-api
- title: global_settings
path: /docs/agents/python-agent/python-agent-api/globalsettings-python-agent-api
- title: ignore_transaction
path: /docs/agents/python-agent/python-agent-api/ignoretransaction-python-agent-api
- title: initialize
path: /docs/agents/python-agent/python-agent-api/initialize-python-agent-api
- title: message_trace
path: /docs/agents/python-agent/python-agent-api/messagetrace-python-agent-api
- title: message_transaction
path: /docs/agents/python-agent/python-agent-api/messagetransaction-python-agent-api
- title: record_custom_event
path: /docs/agents/python-agent/python-agent-api/recordcustomevent-python-agent-api
- title: record_exception
path: /docs/agents/python-agent/python-agent-api/recordexception-python-agent-api
- title: record_custom_metric
path: /docs/agents/python-agent/python-agent-api/recordcustommetric-python-agent-api
- title: record_custom_metrics
path: /docs/agents/python-agent/python-agent-api/recordcustommetrics-python-agent-api
- title: register_application
path: /docs/agents/python-agent/python-agent-api/registerapplication-python-agent-api
- title: register_data_source
path: /docs/agents/python-agent/python-agent-api/registerdatasource-python-agent-api
- title: set_background_task
path: /docs/agents/python-agent/python-agent-api/setbackgroundtask-python-agent-api
- title: set_transaction_name
path: /docs/agents/python-agent/python-agent-api/settransactionname-python-agent-api
- title: shutdown_agent
path: /docs/agents/python-agent/python-agent-api/shutdownagent-python-agent-api
- title: suppress_apdex_metric
path: /docs/agents/python-agent/python-agent-api/suppressapdexmetric-python-agent-api
- title: suppress_transaction_trace
path: /docs/agents/python-agent/python-agent-api/suppresstransactiontrace-python-agent-api
- title: wsgi_application
path: /docs/agents/python-agent/python-agent-api/wsgiapplication-python-agent-api
- title: asgi_application
path: /docs/agents/python-agent/python-agent-api/asgiapplication-python-agent-api
- title: Web frameworks and servers
pages:
- title: uWSGI
path: /docs/agents/python-agent/web-frameworks-servers/python-agent-uwsgi-web-server
- title: Gunicorn
path: /docs/agents/python-agent/web-frameworks-servers/python-agent-gunicorn-wsgi-web-server
- title: mod_wsgi
path: /docs/agents/python-agent/web-frameworks-servers/python-agent-modwsgi-web-server
- title: Tornado 6
path: /docs/agents/python-agent/web-frameworks-servers/python-agent-tornado-6-web-framework
- title: Uvicorn
path: /docs/agents/python-agent/web-frameworks-servers/uvicorn
- title: Starlette
path: /docs/agents/python-agent/web-frameworks-servers/python-agent-starlette-web-framework
- title: FastAPI
path: /docs/agents/python-agent/web-frameworks-servers/python-agent-fastapi-web-framework
- title: CherryPy
path: /docs/agents/python-agent/web-frameworks-servers/python-agent-cherrypy-web-framework
- title: Web2Py
path: /docs/agents/python-agent/web-frameworks-servers/python-agent-web2py-web-framework
- title: AJP
path: /docs/agents/python-agent/web-frameworks-servers/python-agent-ajp-wsgi-server
- title: FastCGI
path: /docs/agents/python-agent/web-frameworks-servers/python-agent-fastcgi-web-server
- title: Paste