forked from MicrosoftDocs/azure-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoc.yml
1009 lines (1009 loc) · 51.7 KB
/
toc.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
- name: Azure Monitor Documentation
href: index.yml
- name: Overview
items:
- name: What is Azure Monitor?
href: overview.md
- name: Branding changes
href: azure-monitor-rebrand.md
- name: Quickstarts
expanded: true
items:
- name: Applications
items:
- name: .NET application
href: ../application-insights/quick-monitor-portal.md?toc=/azure/azure-monitor/toc.json
- name: .NET Core application
href: ../application-insights/app-insights-dotnetcore-quick-start.md?toc=/azure/azure-monitor/toc.json
- name: Node.js application
href: ../application-insights/app-insights-nodejs-quick-start.md?toc=/azure/azure-monitor/toc.json
- name: Java application
href: ../application-insights/app-insights-java-quick-start.md?toc=/azure/azure-monitor/toc.json
- name: Mobile application
href: ../application-insights/app-insights-mobile-center-quickstart.md?toc=/azure/azure-monitor/toc.json
- name: Web application
href: ../application-insights/app-insights-website-monitoring.md?toc=/azure/azure-monitor/toc.json
- name: Virtual machines
items:
- name: Collect - Azure VMs
href: ../log-analytics/log-analytics-quick-collect-azurevm.md?toc=/azure/azure-monitor/toc.json
- name: Collect - Linux computer
href: ../log-analytics/log-analytics-quick-collect-linux-computer.md?toc=/azure/azure-monitor/toc.json
- name: Collect - Windows computer
href: learn/quick-collect-windows-computer.md
- name: Tutorials
items:
- name: Analyze data in Log Analytics
href: learn/tutorial-viewdata.md
- name: Visualize data in Log Analytics
href: learn/tutorial-logs-dashboards.md
- name: Archive platform metric and log data
href: ../monitoring-and-diagnostics/monitor-tutorial-archive-monitoring-data.md?toc=/azure/azure-monitor/toc.json
- name: Alert on log data
href: learn/tutorial-response.md
- name: Autoscale on performance and schedule
href: ../monitoring-and-diagnostics/monitor-tutorial-autoscale-performance-schedule.md?toc=/azure/azure-monitor/toc.json
- name: Find application run-time exceptions
href: ../application-insights/app-insights-tutorial-runtime-exceptions.md?toc=/azure/azure-monitor/toc.json
- name: Find application performance issues
href: ../application-insights/app-insights-tutorial-performance.md?toc=/azure/azure-monitor/toc.json
- name: Alert on application health
href: ../application-insights/app-insights-tutorial-alert.md?toc=/azure/azure-monitor/toc.json
- name: Understand application users
href: ../application-insights/app-insights-tutorial-users.md?toc=/azure/azure-monitor/toc.json
- name: Create custom dashboards
href: ../application-insights/app-insights-tutorial-dashboards.md?toc=/azure/azure-monitor/toc.json
- name: Samples
items:
- name: Azure PowerShell
href: ../log-analytics/powershell-samples.md?toc=/azure/azure-monitor/toc.json
- name: Concepts
items:
- name: Azure management
href: azure-management.md?toc=/azure/azure-monitor/toc.json
- name: Continuous monitoring
href: continuous-monitoring.md
- name: Monitoring data
items:
- name: Metrics and logs
href: platform/data-collection.md
- name: Data sources
href: platform/data-sources.md
- name: Azure data sources
href: ../monitoring-and-diagnostics/monitoring-data-sources.md?toc=/azure/azure-monitor/toc.json
- name: Activity log
href: ../monitoring-and-diagnostics/monitoring-overview-activity-logs.md?toc=/azure/azure-monitor/toc.json
- name: Diagnostic logs
href: ../monitoring-and-diagnostics/monitoring-overview-of-diagnostic-logs.md?toc=/azure/azure-monitor/toc.json
- name: Log data ingestion time
href: platform/data-ingestion-time.md
- name: Custom metrics to metric store
href: ../monitoring-and-diagnostics/metrics-custom-overview.md?toc=/azure/azure-monitor/toc.json
- name: Data security
items:
- name: Log data
href: platform/data-security.md
- name: Personal log data handling
href: platform/personal-data-mgmt.md
- name: Application data collection, retention, and storage
href: ../application-insights/app-insights-data-retention-privacy.md?toc=/azure/azure-monitor/toc.json
- name: Insights
items:
- name: Application Insights
items:
- name: Overview
href: ../application-insights/app-insights-overview.md?toc=/azure/azure-monitor/toc.json
- name: DevOps
href: ../application-insights/app-insights-detect-triage-diagnose.md?toc=/azure/azure-monitor/toc.json
- name: Distributed tracing
href: ../application-insights/distributed-tracing.md?toc=/azure/azure-monitor/toc.json
- name: Log-based & pre-aggregated metrics
href: ../application-insights/pre-aggregated-metrics-log-metrics.md?toc=/azure/azure-monitor/toc.json
- name: Containers
href: insights/container-insights-overview.md
- name: Virtual Machines
href: insights/vminsights-overview.md
- name: Monitoring solutions
href: insights/solutions-inventory.md
- name: Analyze data
items:
- name: Log Analytics
href: log-query/log-query-overview.md
- name: Log query portals
href: log-query/portals.md
- name: OMS portal transition
items:
- name: Overview
href: platform/oms-portal-transition.md
- name: Common questions
href: platform/oms-portal-faq.md
- name: Respond to incidents
items:
- name: Alerts
href: ../monitoring-and-diagnostics/monitoring-overview-alerts.md?toc=/azure/azure-monitor/toc.json
- name: Classic alerts
href: ../monitoring-and-diagnostics/monitoring-overview-alerts-classic.md?toc=/azure/azure-monitor/toc.json
- name: Smart groups
href: ../monitoring-and-diagnostics/monitoring-overview-alerts-smartgroups.md?toc=/azure/azure-monitor/toc.json
- name: Autoscale
href: ../monitoring-and-diagnostics/monitoring-overview-autoscale.md?toc=/azure/azure-monitor/toc.json
- name: Metric alerts
href: ../monitoring-and-diagnostics/alert-metric-overview.md?toc=/azure/azure-monitor/toc.json
- name: Log alerts
href: ../monitoring-and-diagnostics/monitor-alerts-unified-log.md?toc=/azure/azure-monitor/toc.json
- name: Activity log alerts
href: ../monitoring-and-diagnostics/monitoring-activity-log-alerts.md?toc=/azure/azure-monitor/toc.json
- name: Visualize data
href: visualizations.md?toc=/azure/azure-monitor/toc.json
- name: Partner integrations
href: ../monitoring-and-diagnostics/monitoring-partners.md?toc=/azure/azure-monitor/toc.json
- name: FAQ
items:
- name: Log Analytics
href: platform/log-faq.md
- name: Application Insights
href: ../application-insights/app-insights-troubleshoot-faq.md?toc=/azure/azure-monitor/toc.json
- name: How-to guides
items:
- name: Plan and prepare
items:
- name: Manage access
items:
- name: Roles permissions and security
href: ../monitoring-and-diagnostics/monitoring-roles-permissions-security.md?toc=/azure/azure-monitor/toc.json
- name: Workspaces
href: platform/manage-access.md
- name: Applications
href: ../application-insights/app-insights-resources-roles-access-control.md?toc=/azure/azure-monitor/toc.json
- name: IP addresses
href: ../application-insights/app-insights-ip-addresses.md?toc=/azure/azure-monitor/toc.json
- name: Monitor applications
items:
- name: Deep diagnostics for web apps and services
href: ../application-insights/app-insights-devops.md?toc=/azure/azure-monitor/toc.json
- name: Monitor performance in web applications
href: ../application-insights/app-insights-web-monitor-performance.md?toc=/azure/azure-monitor/toc.json
- name: Separate development, test, and production
href: ../application-insights/app-insights-separate-resources.md?toc=/azure/azure-monitor/toc.json
- name: How do I ... in Application Insights?
href: ../application-insights/app-insights-how-do-i.md?toc=/azure/azure-monitor/toc.json
- name: Manage workspaces
items:
- name: Create a workspace
items:
- name: Use Azure portal
href: learn/quick-create-workspace.md
- name: Use Azure CLI
href: learn/quick-create-workspace-cli.md
- name: Use Azure PowerShell
href: learn/quick-create-workspace-posh.md
- name: Delete a workspace
href: platform/delete-workspace.md
- name: Design for service providers
href: platform/service-providers.md
- name: Collect data
items:
- name: Install and configure agents
items:
- name: Monitoring agents overview
href: platform/agents-overview.md
- name: Log Analytics agents
items:
- name: Overview
href: platform/log-analytics-agent.md
- name: Windows agents
href: platform/agent-windows.md
- name: VM Extension for Windows
href: ../virtual-machines/windows/extensions-oms.md?toc=/azure/azure-monitor/toc.json
- name: VM Extension for Linux
href: ../virtual-machines/linux/extensions-oms.md?toc=/azure/azure-monitor/toc.json
- name: Operations Manager
href: platform/om-agents.md
- name: OMS Gateway
href: platform/gateway.md
- name: Agent management
href: platform/agent-manage.md
- name: Azure Diagnostics extension
items:
- name: Overview
href: ../monitoring-and-diagnostics/azure-diagnostics.md?toc=/azure/azure-monitor/toc.json
- name: Send to Azure Storage
href: ../monitoring-and-diagnostics/azure-diagnostics-storage.md?toc=/azure/azure-monitor/toc.json
- name: Send to Application Insights
href: ../monitoring-and-diagnostics/azure-diagnostics-configure-application-insights.md?toc=/azure/azure-monitor/toc.json
- name: Send to Event Hubs
href: ../monitoring-and-diagnostics/azure-diagnostics-streaming-event-hubs.md?toc=/azure/azure-monitor/toc.json
- name: Troubleshooting
href: ../monitoring-and-diagnostics/azure-diagnostics-troubleshooting.md?toc=/azure/azure-monitor/toc.json
- name: Enable diagnostic settings with Resource Manager templates
href: ../monitoring-and-diagnostics/monitoring-enable-diagnostic-logs-using-template.md?toc=/azure/azure-monitor/toc.json
- name: Prepare for JSON Lines diagnostic logs format
href: ../monitoring-and-diagnostics/monitor-diagnostic-logs-append-blobs.md?toc=/azure/azure-monitor/toc.json
- name: VM guest to metrics store
href: ../monitoring-and-diagnostics/metrics-store-custom-guestos-resource-manager-vm.md?toc=/azure/azure-monitor/toc.json
- name: VM scale set guest to metrics store
href: ../monitoring-and-diagnostics/metrics-store-custom-guestos-resource-manager-vmss.md?toc=/azure/azure-monitor/toc.json
- name: VM classic guest to metrics store
href: ../monitoring-and-diagnostics/metrics-store-custom-guestos-classic-vm.md?toc=/azure/azure-monitor/toc.json
- name: Cloud service guest to metrics store
href: ../monitoring-and-diagnostics/metrics-store-custom-guestos-classic-cloud-service.md?toc=/azure/azure-monitor/toc.json
- name: Troubleshoot
items:
- name: Log Analytics VM Extension
href: platform/vmext-troubleshoot.md
- name: Log Analytics Linux agent
href: platform/agent-linux-troubleshoot.md
- name: Agent data sources
items:
- name: Overview
href: platform/agent-data-sources.md
- name: Windows events
href: platform/data-sources-windows-events.md
- name: Custom JSON data
href: platform/data-sources-json.md
- name: CollectD performance data
href: platform/data-sources-collectd.md
- name: Nagios and Zabbix alerts
href: platform/data-sources-alerts-nagios-zabbix.md
- name: Syslog
href: platform/data-sources-syslog.md
- name: Performance counters
href: platform/data-sources-performance-counters.md
- name: Linux application performance
href: platform/data-sources-linux-applications.md
- name: IIS logs
href: platform/data-sources-iis-logs.md
- name: Custom logs
href: platform/data-sources-custom-logs.md
- name: Custom fields
href: platform/custom-fields.md
- name: Configure applications
items:
- name: Azure apps
items:
- name: Azure web apps
href: ../application-insights/app-insights-azure-web-apps.md?toc=/azure/azure-monitor/toc.json
- name: Azure Cloud Services
href: ../application-insights/app-insights-cloudservices.md?toc=/azure/azure-monitor/toc.json
- name: Add continuous monitoring
href: ../application-insights/app-insights-vsts-continuous-monitoring.md?toc=/azure/azure-monitor/toc.json
- name: Profiler
items:
- name: Overview
href: ../application-insights/app-insights-profiler-overview.md?toc=/azure/azure-monitor/toc.json
- name: Enable Profiler for an App Service
href: ../application-insights/app-insights-profiler.md?toc=/azure/azure-monitor/toc.json
- name: Enable the Profiler for a Cloud Service
href: ../application-insights/app-insights-profiler-cloudservice.md?toc=/azure/azure-monitor/toc.json
- name: Enable Profiler for a Service Fabric Application
href: ../application-insights/app-insights-profiler-servicefabric.md?toc=/azure/azure-monitor/toc.json
- name: Enable Profiler for an Azure VM
href: ../application-insights/app-insights-profiler-vm.md?toc=/azure/azure-monitor/toc.json
- name: Profiler Settings
href: ../application-insights/app-insights-profiler-settings.md?toc=/azure/azure-monitor/toc.json
- name: Track Requests for Profiling
href: ../application-insights/app-insights-profiler-trackrequests.md?toc=/azure/azure-monitor/toc.json
- name: Profiler Troubleshooting
href: ../application-insights/app-insights-profiler-troubleshooting.md?toc=/azure/azure-monitor/toc.json
- name: Diagnostics
href: ../application-insights/app-insights-azure-diagnostics.md?toc=/azure/azure-monitor/toc.json
- name: Previews
href: ../application-insights/app-insights-previews.md?toc=/azure/azure-monitor/toc.json
- name: ASP.NET apps
items:
- name: Web apps
href: ../application-insights/app-insights-asp-net.md?toc=/azure/azure-monitor/toc.json
- name: Status Monitor
href: ../application-insights/app-insights-monitor-performance-live-website-now.md?toc=/azure/azure-monitor/toc.json
- name: Windows services
href: ../application-insights/app-insights-windows-services.md?toc=/azure/azure-monitor/toc.json
- name: Windows desktop
href: ../application-insights/app-insights-windows-desktop.md?toc=/azure/azure-monitor/toc.json
- name: ASP.NET Core
href: ../application-insights/app-insights-asp-net-core.md?toc=/azure/azure-monitor/toc.json
items:
- name: Profiler for Linux App services
href: ../application-insights/app-insights-profiler-aspnetcore-linux.md?toc=/azure/azure-monitor/toc.json
- name: Console
href: ../application-insights/application-insights-console.md?toc=/azure/azure-monitor/toc.json
- name: Application dashboard
href: ../application-insights/app-insights-overview-dashboard.md?toc=/azure/azure-monitor/toc.json
- name: Collect more telemetry
href: ../application-insights/app-insights-asp-net-more.md?toc=/azure/azure-monitor/toc.json
- name: Exceptions
href: ../application-insights/app-insights-asp-net-exceptions.md?toc=/azure/azure-monitor/toc.json
- name: Log traces
href: ../application-insights/app-insights-asp-net-trace-logs.md?toc=/azure/azure-monitor/toc.json
- name: Performance counters
href: ../application-insights/app-insights-performance-counters.md?toc=/azure/azure-monitor/toc.json
- name: Dependencies
href: ../application-insights/app-insights-asp-net-dependencies.md?toc=/azure/azure-monitor/toc.json
- name: Release annotations
href: ../application-insights/app-insights-annotations.md?toc=/azure/azure-monitor/toc.json
- name: ApplicationInsights.config
href: ../application-insights/app-insights-configuration-with-applicationinsights-config.md?toc=/azure/azure-monitor/toc.json
- name: Snapshot Debugger
href: ../application-insights/app-insights-snapshot-debugger.md?toc=/azure/azure-monitor/toc.json
- name: Java apps
items:
- name: Web apps
href: ../application-insights/app-insights-java-get-started.md?toc=/azure/azure-monitor/toc.json
- name: Web apps - runtime
href: ../application-insights/app-insights-java-live.md?toc=/azure/azure-monitor/toc.json
- name: Docker apps
href: ../application-insights/app-insights-docker.md?toc=/azure/azure-monitor/toc.json
- name: Log traces
href: ../application-insights/app-insights-java-trace-logs.md?toc=/azure/azure-monitor/toc.json
- name: Unix metrics
href: ../application-insights/app-insights-java-collectd.md?toc=/azure/azure-monitor/toc.json
- name: Dependencies
href: ../application-insights/app-insights-java-agent.md?toc=/azure/azure-monitor/toc.json
- name: Filter telemetry
href: ../application-insights/app-insights-java-filter-telemetry.md?toc=/azure/azure-monitor/toc.json
- name: Micrometer Metrics
href: ../application-insights/micrometer-java.md?toc=/azure/azure-monitor/toc.json
- name: Node.js apps
items:
- name: Node.js
href: ../application-insights/app-insights-nodejs.md?toc=/azure/azure-monitor/toc.json
- name: Web pages
items:
- name: JavaScript
href: ../application-insights/app-insights-javascript.md?toc=/azure/azure-monitor/toc.json
- name: Monitor Azure Functions
href: ../azure-functions/functions-monitoring.md?toc=/azure/application-insights/toc.json
- name: Distributed tracing
items:
- name: Local forwarder
href: ../application-insights/opencensus-local-forwarder.md?toc=/azure/azure-monitor/toc.json
- name: Python
href: ../application-insights/opencensus-python.md?toc=/azure/azure-monitor/toc.json
- name: Go
href: ../application-insights/opencensus-go.md?toc=/azure/azure-monitor/toc.json
- name: Other platforms
items:
- name: SharePoint sites
href: ../application-insights/app-insights-sharepoint.md?toc=/azure/azure-monitor/toc.json
- name: Dynamics CRM
href: ../application-insights/app-insights-sample-mscrm.md?toc=/azure/azure-monitor/toc.json
- name: More platforms
href: ../application-insights/app-insights-platforms.md?toc=/azure/azure-monitor/toc.json
- name: Smart Detection
href: ../application-insights/app-insights-proactive-diagnostics.md?toc=/azure/azure-monitor/toc.json
items:
- name: Failure anomalies
href: ../application-insights/app-insights-proactive-failure-diagnostics.md?toc=/azure/azure-monitor/toc.json
- name: Performance anomalies
href: ../application-insights/app-insights-proactive-performance-diagnostics.md?toc=/azure/azure-monitor/toc.json
- name: Trace degradation
href: ../application-insights/app-insights-proactive-trace-severity.md?toc=/azure/azure-monitor/toc.json
- name: Exception volume
href: ../application-insights/app-insights-proactive-exception-volume.md?toc=/azure/azure-monitor/toc.json
- name: Memory leak
href: ../application-insights/app-insights-proactive-potential-memory-leak.md?toc=/azure/azure-monitor/toc.json
- name: Resource utilization
href: ../application-insights/app-insights-proactive-low-utilization-cloud-resources.md?toc=/azure/azure-monitor/toc.json
- name: Security detection
href: ../application-insights/app-insights-proactive-application-security-detection-pack.md?toc=/azure/azure-monitor/toc.json
- name: Azure Cloud Services
href: ../application-insights/app-insights-proactive-cloud-services.md?toc=/azure/azure-monitor/toc.json
- name: Manage smart detection rules
href: ../application-insights/app-insights-proactive-arm-config.md?toc=/azure/azure-monitor/toc.json
- name: Create a resource
href: ../application-insights/app-insights-create-new-resource.md?toc=/azure/azure-monitor/toc.json
- name: Troubleshoot
items:
- name: No data for .NET
href: ../application-insights/app-insights-asp-net-troubleshoot-no-data.md?toc=/azure/azure-monitor/toc.json
- name: Snapshot debugger
href: ../application-insights/app-insights-troubleshoot-snapshot-debugger.md?toc=/azure/azure-monitor/toc.json
- name: Analytics
href: ../application-insights/app-insights-analytics-troubleshooting.md?toc=/azure/azure-monitor/toc.json
- name: Java
href: ../application-insights/app-insights-java-troubleshoot.md?toc=/azure/azure-monitor/toc.json
- name: Usage analytics
href: ../application-insights/app-insights-usage-troubleshoot.md?toc=/azure/azure-monitor/toc.json
- name: Azure resources
items:
- name: Azure activity logs
items:
- name: Analytics
href: platform/collect-activity-logs.md
- name: Collect across subscriptions
href: platform/collect-activity-logs-subscriptions.md
- name: Service logs and metrics
href: platform/collect-azure-metrics-logs.md
- name: Diagnostic or log data from Azure storage
href: platform/azure-storage-iis-table.md
- name: Azure PaaS resources
href: platform/collect-azurepass-posh.md
- name: Correlate custom data sources
href: ../application-insights/app-insights-custom-data-correlation.md?toc=/azure/azure-monitor/toc.json
- name: Collect custom data
items:
- name: Log Analytics Data collector API
href: platform/data-collector-api.md
- name: Log Analytics Data Collector API Pipeline example
href: platform/create-pipeline-datacollector-api.md
- name: Application data
href: ../application-insights/app-insights-analytics-import.md?toc=/azure/azure-monitor/toc.json
- name: Metrics store REST API
href: ../monitoring-and-diagnostics/metrics-store-custom-rest-api.md?toc=/azure/azure-monitor/toc.json
- name: GuestOS to metrics store Linux VM (Telegraf)
href: ../monitoring-and-diagnostics/metrics-store-custom-linux-telegraf.md?toc=/azure/azure-monitor/toc.json
- name: System Center
items:
- name: Configuration Manager
href: ../log-analytics/log-analytics-sccm.md?toc=/azure/azure-monitor/toc.json
- name: Application Performance Monitoring using SCOM
href: ../application-insights/app-insights-scom.md?toc=/azure/azure-monitor/toc.json
- name: Route data
items:
- name: Archive activity log
href: ../monitoring-and-diagnostics/monitoring-archive-activity-log.md?toc=/azure/azure-monitor/toc.json
- name: Archive diagnostic logs
href: ../monitoring-and-diagnostics/monitoring-archive-diagnostic-logs.md?toc=/azure/azure-monitor/toc.json
- name: Store diagnostic logs
href: ../monitoring-and-diagnostics/monitor-stream-diagnostic-logs-log-analytics.md?toc=/azure/azure-monitor/toc.json
- name: Stream activity log to Event Hubs
href: ../monitoring-and-diagnostics/monitoring-stream-activity-logs-event-hubs.md?toc=/azure/azure-monitor/toc.json
- name: Logs and metrics to Event Hub
href: ../monitoring-and-diagnostics/monitor-stream-monitoring-data-event-hubs.md?toc=/azure/azure-monitor/toc.json
- name: Diagnostic logs to Event Hub
href: ../monitoring-and-diagnostics/monitoring-stream-diagnostic-logs-to-event-hubs.md?toc=/azure/azure-monitor/toc.json
- name: Application data to Log Analytics
href: platform/app-insights-connector.md
- name: Export application data
items:
- name: Continuous export
href: ../application-insights/app-insights-export-telemetry.md?toc=/azure/azure-monitor/toc.json
items:
- name: Code samples
items:
- name: Export to SQL using Stream Analytics
href: ../application-insights/app-insights-code-sample-export-sql-stream-analytics.md?toc=/azure/azure-monitor/toc.json
- name: Export to Stream Analytics
href: ../application-insights/app-insights-export-stream-analytics.md?toc=/azure/azure-monitor/toc.json
- name: Export data model
href: ../application-insights/app-insights-export-data-model.md?toc=/azure/azure-monitor/toc.json
- name: Gain insights
items:
- name: Monitor applications
items:
- name: Application Insights portal
items:
- name: Search
href: ../application-insights/app-insights-diagnostic-search.md?toc=/azure/azure-monitor/toc.json
- name: Metrics
href: ../application-insights/app-insights-metrics-explorer.md?toc=/azure/azure-monitor/toc.json
- name: Live stream
href: ../application-insights/app-insights-live-stream.md?toc=/azure/azure-monitor/toc.json
- name: Application Map
href: ../application-insights/app-insights-app-map.md?toc=/azure/azure-monitor/toc.json
- name: Transaction diagnostics
href: ../application-insights/app-insights-transaction-diagnostics.md?toc=/azure/azure-monitor/toc.json
- name: HockeyApp data
href: ../application-insights/app-insights-hockeyapp-bridge-app.md?toc=/azure/azure-monitor/toc.json
- name: Visual Studio
items:
- name: F5 insights
href: ../application-insights/app-insights-visual-studio.md?toc=/azure/azure-monitor/toc.json
- name: Trends
href: ../application-insights/app-insights-visual-studio-trends.md?toc=/azure/azure-monitor/toc.json
- name: CodeLens
href: ../application-insights/app-insights-visual-studio-codelens.md?toc=/azure/azure-monitor/toc.json
- name: Usage
items:
- name: Overview
href: ../application-insights/app-insights-usage-overview.md?toc=/azure/azure-monitor/toc.json
- name: Send user context
href: ../application-insights/app-insights-usage-send-user-context.md?toc=/azure/azure-monitor/toc.json
- name: Users, Sessions, Events
href: ../application-insights/app-insights-usage-segmentation.md?toc=/azure/azure-monitor/toc.json
- name: Funnels
href: ../application-insights/usage-funnels.md?toc=/azure/azure-monitor/toc.json
- name: Cohorts
href: ../application-insights/app-insights-usage-cohorts.md?toc=/azure/azure-monitor/toc.json
- name: Impact
href: ../application-insights/app-insights-usage-impact.md?toc=/azure/azure-monitor/toc.json
- name: Retention
href: ../application-insights/app-insights-usage-retention.md?toc=/azure/azure-monitor/toc.json
- name: User Flows
href: ../application-insights/app-insights-usage-flows.md?toc=/azure/azure-monitor/toc.json
- name: Workbooks
href: ../application-insights/app-insights-usage-workbooks.md?toc=/azure/azure-monitor/toc.json
- name: Web App Analytics solution
href: insights/azure-web-apps-analytics.md
- name: Monitor containers
items:
- name: Azure Monitor for containers
items:
- name: Overview
href: insights/container-insights-overview.md
- name: Onboard
href: insights/container-insights-onboard.md
- name: Analyze
href: insights/container-insights-analyze.md
- name: Disable monitoring
href: insights/container-insights-optout.md
- name: Upgrade agent
href: insights/container-insights-agent-upgrade.md
- name: Troubleshooting
href: insights/container-insights-troubleshoot.md
- name: Docker and Windows Container monitoring
href: insights/containers.md
- name: Monitor Docker applications
href: ../application-insights/app-insights-docker.md?toc=/azure/azure-monitor/toc.json
- name: Monitor resource groups
href: ../monitoring-and-diagnostics/resource-group-insights.md?toc=/azure/azure-monitor/toc.json
- name: Monitor databases
items:
- name: Azure SQL
href: insights/azure-sql.md
- name: SQL Server
href: insights/sql-assessment.md
- name: Monitor networks
items:
- name: Networking Analytics
href: insights/azure-networking-analytics.md
- name: Network Performance Monitor
items:
- name: Solution overview
href: insights/network-performance-monitor.md
- name: Performance Monitor
href: insights/network-performance-monitor-performance-monitor.md
- name: Service Endpoint
href: insights/network-performance-monitor-service-endpoint.md
- name: ExpressRoute
href: insights/network-performance-monitor-expressroute.md
- name: Pricing
href: insights/network-performance-monitor-pricing-faq.md
- name: FAQ
href: insights/network-performance-monitor-faq.md
- name: Monitor virtual machines
items:
- name: Azure Monitor for VMs
items:
- name: Overview
href: insights/vminsights-overview.md
- name: Known issues
href: insights/vminsights-known-issues.md
- name: FAQ
href: insights/vminsights-faq.md
- name: Onboard
href: insights/vminsights-onboard.md
- name: Monitor health
href: insights/vminsights-health.md
- name: Map dependencies
href: insights/vminsights-maps.md
- name: Monitor performance
href: insights/vminsights-performance.md
- name: Query data with Log Analytics
href: insights/vminsights-log-search.md
- name: Disable monitoring
href: insights/vminsights-optout.md
- name: Agent Health
href: insights/solution-agenthealth.md
- name: Capacity and performance
href: insights/capacity-performance.md
- name: VMware Analytics
href: insights/vmware.md
- name: Wire Data
href: insights/wire-data.md
- name: Service Map
items:
- name: Use
href: insights/service-map.md
- name: Configure
href: insights/service-map-configure.md
- name: Integration with Operations Manager
href: insights/service-map-scom.md
- name: Monitor Azure resources
items:
- name: Key Vault Analytics
href: insights/azure-key-vault.md
- name: Service Fabric Analytics
href: ../service-fabric/service-fabric-diagnostics-oms-agent.md?toc=/azure/azure-monitor/toc.json
- name: Monitor other resources
items:
- name: Assess AD Health
href: insights/ad-assessment.md
- name: AD Replication Status
href: insights/ad-replication-status.md
- name: DNS
href: insights/dns-analytics.md
- name: Office 365
href: insights/solution-office-365.md
- name: Assess Operations Manager
href: insights/scom-assessment.md
- name: Surface Hub
href: insights/surface-hubs.md
- name: Use monitoring solutions
items:
- name: Overview
href: insights/solutions.md
- name: Target solutions
href: insights/solution-targeting.md
- name: Visualize data
items:
- name: Views
href: platform/view-designer.md
items:
- name: Tile reference
href: platform/view-designer-tiles.md
- name: Visualization part reference
href: platform/view-designer-parts.md
- name: Filters
href: platform/view-designer-filters.md
- name: Dashboards
items:
- name: Logs
href: platform/dashboards.md
- name: Applications
href: ../application-insights/app-insights-dashboards.md?toc=/azure/azure-monitor/toc.json
- name: Power BI
items:
- name: Export log data
href: platform/powerbi.md
- name: Export application data
href: ../application-insights/app-insights-export-power-bi.md?toc=/azure/azure-monitor/toc.json
- name: Send data to Grafana
href: ../monitoring-and-diagnostics/monitor-send-to-grafana.md?toc=/azure/azure-monitor/toc.json
- name: Analyze data
items:
- name: Create metrics charts in Metrics Explorer
href: ../monitoring-and-diagnostics/monitoring-metric-charts.md?toc=/azure/azure-monitor/toc.json
- name: View events in activity log
href: ../azure-resource-manager/resource-group-audit.md?toc=/azure/azure-monitor/toc.json
- name: View service notifications
href: ../monitoring-and-diagnostics/monitoring-service-notifications.md?toc=/azure/azure-monitor/toc.json
- name: Query log data
items:
- name: Query language Documentation
href: log-query/query-language.md
- name: Language differences
href: log-query/data-explorer-difference.md
- name: Get started
items:
- name: Get started with Analytics portal
href: log-query/get-started-portal.md
- name: Get started with queries
href: log-query/get-started-queries.md
- name: Search queries
href: log-query/search-queries.md
- name: Useful operators
href: log-query/useful-operators.md
- name: Lessons
items:
- name: String operations
href: log-query/string-operations.md
- name: Date and time operations
href: log-query/datetime-operations.md
- name: Aggregation functions
href: log-query/aggregations.md
- name: Advanced aggregations
href: log-query/advanced-aggregations.md
- name: Joins
href: log-query/joins.md
- name: JSON and data structures
href: log-query/json-data-structures.md
- name: Advanced query writing
href: log-query/advanced-query-writing.md
- name: Charts and diagrams
href: log-query/charts.md
- name: Functions
href: log-query/functions.md
- name: Cheatsheets
items:
- name: SQL
href: log-query/sql-cheatsheet.md
- name: Splunk
href: log-query/splunk-cheatsheet.md
- name: Query language
items:
- name: Examples
href: log-query/examples.md
- name: Cross-resource searches
href: log-query/cross-workspace-query.md
- name: app expression
href: log-query/app-expression.md
- name: workspace expression
href: log-query/workspace-expression.md
- name: Log data
items:
- name: Application data
href: ../application-insights/app-insights-analytics.md?toc=/azure/azure-monitor/toc.json
- name: Standard properties
- name: Parse text data
href: log-query/parse-text.md
- name: Take action from search results
href: log-query/take-action.md
- name: Computer groups
href: platform/computer-groups.md
- name: Flow connector
href: platform/flow-tutorial.md
- name: Log Search API
href: https://dev.loganalytics.io/
- name: Respond to incidents
items:
- name: Alerts
items:
- name: Use metric alerts
items:
- name: Create, view and manage metric alerts in Azure Monitor
href: ../monitoring-and-diagnostics/alert-metric.md?toc=/azure/azure-monitor/toc.json
- name: Create, view and manage classic metric alerts in Azure Monitor
href: ../monitoring-and-diagnostics/alert-metric-classic.md?toc=/azure/azure-monitor/toc.json
- name: Alerts with dynamic thresholds
href: ../monitoring-and-diagnostics/monitoring-alerts-dynamic-thresholds.md?toc=/azure/azure-monitor/toc.json
- name: Configure metric alerts on logs
href: ../monitoring-and-diagnostics/monitoring-metric-alerts-logs.md?toc=/azure/azure-monitor/toc.json
- name: Create a newer metric alert with a Resource Manager template
href: ../monitoring-and-diagnostics/monitoring-create-metric-alerts-with-templates.md?toc=/azure/azure-monitor/toc.json
- name: Create a classic metric alert with a Resource Manager template
href: ../monitoring-and-diagnostics/monitoring-enable-alerts-using-template.md?toc=/azure/azure-monitor/toc.json
- name: Have a classic metric alert call a webhook
href: ../monitoring-and-diagnostics/insights-webhooks-alerts.md?toc=/azure/azure-monitor/toc.json
- name: Use log alerts
items:
- name: Configure alerts on analytics query
href: ../monitoring-and-diagnostics/alert-log.md?toc=/azure/azure-monitor/toc.json
- name: Webhook actions for log alerts
href: ../monitoring-and-diagnostics/monitor-alerts-unified-log-webhook.md?toc=/azure/azure-monitor/toc.json
- name: Troubleshooting log alerts
href: ../monitoring-and-diagnostics/alert-log-troubleshoot.md?toc=/azure/azure-monitor/toc.json
- name: Use activity log alerts
items:
- name: Configure alerts on an activity log event
href: ../monitoring-and-diagnostics/alert-activity-log.md?toc=/azure/azure-monitor/toc.json
- name: Migrate to activity log alerts
href: ../monitoring-and-diagnostics/monitoring-migrate-management-alerts.md?toc=/azure/azure-monitor/toc.json
- name: Configure alerts on service notifications
href: ../monitoring-and-diagnostics/monitoring-activity-log-alerts-on-service-notifications.md?toc=/azure/azure-monitor/toc.json
- name: Use application alerts
items:
- name: Availability
href: ../application-insights/app-insights-monitor-web-app-availability.md?toc=/azure/azure-monitor/toc.json
- name: Metric alerts
href: ../application-insights/app-insights-alerts.md?toc=/azure/azure-monitor/toc.json
- name: Use action groups with alerts
items:
- name: Create action groups
href: ../monitoring-and-diagnostics/monitoring-action-groups.md?toc=/azure/azure-monitor/toc.json
- name: Learn about the webhook schema
href: ../monitoring-and-diagnostics/monitoring-activity-log-alerts-webhook.md?toc=/azure/azure-monitor/toc.json
- name: SMS alert behavior
href: ../monitoring-and-diagnostics/monitoring-sms-alert-behavior.md?toc=/azure/azure-monitor/toc.json
- name: Alert rate limiting
href: ../monitoring-and-diagnostics/monitoring-alerts-rate-limiting.md?toc=/azure/azure-monitor/toc.json
- name: Create action groups with Resource Manager
href: ../monitoring-and-diagnostics/monitoring-create-action-group-with-resource-manager-template.md?toc=/azure/azure-monitor/toc.json
- name: Implement a Logic App action
href: ../monitoring-and-diagnostics/monitoring-action-groups-logic-app.md?toc=/azure/azure-monitor/toc.json
- name: Alerts from Operations Manager
href: platform/alert-management-solution.md
- name: Manage alerts
items:
- name: Manage alert instances
href: ../monitoring-and-diagnostics/monitoring-alerts-managing-alert-instances.md?toc=/azure/azure-monitor/toc.json
- name: Manage smart groups
href: ../monitoring-and-diagnostics/monitoring-alerts-managing-smart-groups.md?toc=/azure/azure-monitor/toc.json
- name: Manage alert and smart group states
href: ../monitoring-and-diagnostics/monitoring-alerts-managing-alert-states.md?toc=/azure/azure-monitor/toc.json
- name: Manage alerts from other monitoring services
href: ../monitoring-and-diagnostics/monitoring-alerts-managing-nagios-zabbix-scom.md?toc=/azure/azure-monitor/toc.json
- name: Autoscale
items:
- name: Walkthrough of autoscale
href: ../monitoring-and-diagnostics/monitoring-autoscale-get-started.md?toc=/azure/azure-monitor/toc.json
- name: Understand Autoscale settings
href: ../monitoring-and-diagnostics/monitoring-understanding-autoscale-settings.md?toc=/azure/azure-monitor/toc.json
- name: Best practices
href: ../monitoring-and-diagnostics/insights-autoscale-best-practices.md?toc=/azure/azure-monitor/toc.json
- name: Common metrics
href: ../monitoring-and-diagnostics/insights-autoscale-common-metrics.md?toc=/azure/azure-monitor/toc.json
- name: Common patterns
href: ../monitoring-and-diagnostics/monitoring-autoscale-common-scale-patterns.md?toc=/azure/azure-monitor/toc.json
- name: Autoscale using a custom metric
href: ../monitoring-and-diagnostics/monitoring-autoscale-scale-by-custom-metric.md?toc=/azure/azure-monitor/toc.json
- name: Autoscale VM scale sets using Resource Manager templates
href: ../monitoring-and-diagnostics/insights-advanced-autoscale-virtual-machine-scale-sets.md?toc=/azure/azure-monitor/toc.json
- name: Automatically scale machines in a VM scale set
href: ../virtual-machine-scale-sets/virtual-machine-scale-sets-windows-autoscale.md?toc=/azure/azure-monitor/toc.json?toc=/azure/azure-monitor/toc.json
- name: Configure webhooks and email notifications on autoscale
href: ../monitoring-and-diagnostics/insights-autoscale-to-webhook-email.md?toc=/azure/azure-monitor/toc.json
- name: Service notifications
items:
- name: View service notifications
href: ../monitoring-and-diagnostics/monitoring-service-notifications.md?toc=/azure/azure-monitor/toc.json
- name: Configure alerts on service notifications
href: ../monitoring-and-diagnostics/monitoring-activity-log-alerts-on-service-notifications.md?toc=/azure/azure-monitor/toc.json
- name: IT Service Management
items:
- name: IT Service Management Connector
href: platform/itsmc-overview.md
- name: IT Service Management connections
href: platform/itsmc-connections.md
- name: Create Service Manager web app
href: platform/itsmc-service-manager-script.md
- name: Manage usage and cost
items:
- name: Usage and estimated costs
href: ../monitoring-and-diagnostics/monitoring-usage-and-estimated-costs.md?toc=/azure/azure-monitor/toc.json
- name: Application data volume and retention
href: ../application-insights/app-insights-pricing.md?toc=/azure/azure-monitor/toc.json
- name: Application enterprise plan details
href: ../application-insights/app-insights-pricing-enterprise-details.md?toc=/azure/azure-monitor/toc.json
- name: Log data volume and retention
href: platform/manage-cost-storage.md
- name: Log data monitor usage
href: ../log-analytics/log-analytics-usage.md?toc=/azure/azure-monitor/toc.json
- name: Automate
items:
- name: PowerShell
items:
- name: Azure PowerShell samples
href: ../monitoring-and-diagnostics/insights-powershell-samples.md?toc=/azure/azure-monitor/toc.json
- name: PowerShell cmdlets
href: ../log-analytics/log-analytics-powershell-workspace-configuration.md?toc=/azure/monitoring-and-diagnostics/toc.json
- name: Applications
items:
- name: Create Application Insights resources
href: ../application-insights/app-insights-powershell.md?toc=/azure/azure-monitor/toc.json
- name: Create resources
href: ../application-insights/app-insights-powershell-script-create-resource.md?toc=/azure/azure-monitor/toc.json
- name: Set alerts
href: ../application-insights/app-insights-powershell-alerts.md?toc=/azure/azure-monitor/toc.json
- name: Get Azure diagnostics
href: ../application-insights/app-insights-powershell-azure-diagnostics.md?toc=/azure/azure-monitor/toc.json
- name: Azure CLI samples
href: ../monitoring-and-diagnostics/insights-cli-samples.md?toc=/azure/azure-monitor/toc.json
- name: Resource Manager templates
href: platform/template-workspace-configuration.md
- name: API
items:
- name: Walkthrough using REST API
href: ../monitoring-and-diagnostics/monitoring-rest-api-walkthrough.md?toc=/azure/azure-monitor/toc.json
- name: Alert API
href: ../log-analytics/log-analytics-api-alerts.md?toc=/azure/monitoring-and-diagnostics/toc.json
- name: Applications
items:
- name: Automate with Microsoft Flow
href: ../application-insights/app-insights-automate-with-flow.md?toc=/azure/azure-monitor/toc.json
- name: Automate with an Azure Logic App
href: ../application-insights/automate-with-logic-apps.md?toc=/azure/azure-monitor/toc.json
- name: Custom email reports
href: ../application-insights/automate-custom-reports.md?toc=/azure/azure-monitor/toc.json
- name: Extend
items:
- name: Applications
items:
- name: API for custom events and metrics
href: ../application-insights/app-insights-api-custom-events-metrics.md?toc=/azure/azure-monitor/toc.json
- name: Track custom operations in .NET SDK
href: ../application-insights/application-insights-custom-operations-tracking.md?toc=/azure/azure-monitor/toc.json
- name: Filtering and preprocessing telemetry
href: ../application-insights/app-insights-api-filtering-sampling.md?toc=/azure/azure-monitor/toc.json
- name: Sampling
href: ../application-insights/app-insights-sampling.md?toc=/azure/azure-monitor/toc.json
- name: Monitoring solutions
items:
- name: Design and build
href: insights/solutions-creating.md
- name: Solution file
href: insights/solutions-solution-file.md
- name: Automation resources
href: insights/solutions-resources-automation.md
- name: Log searches and alerts
href: insights/solutions-resources-searches-alerts.md
- name: Views
href: insights/solutions-resources-views.md
- name: Best practices
href: insights/solutions-best-practices.md
- name: Collect monitoring data from a runbook
href: platform/runbook-datacollect.md
- name: Reference
items:
- name: Application Insights
items:
- name: Dependency auto-collection
href: ../application-insights/auto-collect-dependencies.md?toc=/azure/azure-monitor/toc.json
- name: Telemetry correlation
href: ../application-insights/application-insights-correlation.md?toc=/azure/azure-monitor/toc.json
- name: NuGet packages
href: ../application-insights/app-insights-nuget.md?toc=/azure/azure-monitor/toc.json
- name: Application Insights data model
items:
- name: Overview
href: ../application-insights/application-insights-data-model.md?toc=/azure/azure-monitor/toc.json
- name: Request
href: ../application-insights/application-insights-data-model-request-telemetry.md?toc=/azure/azure-monitor/toc.json
- name: Dependency
href: ../application-insights/application-insights-data-model-dependency-telemetry.md?toc=/azure/azure-monitor/toc.json
- name: Exception
href: ../application-insights/application-insights-data-model-exception-telemetry.md?toc=/azure/azure-monitor/toc.json
- name: Trace
href: ../application-insights/application-insights-data-model-trace-telemetry.md?toc=/azure/azure-monitor/toc.json
- name: Event
href: ../application-insights/application-insights-data-model-event-telemetry.md?toc=/azure/azure-monitor/toc.json
- name: Metric
href: ../application-insights/application-insights-data-model-metric-telemetry.md?toc=/azure/azure-monitor/toc.json
- name: Context
href: ../application-insights/application-insights-data-model-context.md?toc=/azure/azure-monitor/toc.json
- name: Azure CLI
href: /cli/azure/monitor?view=azure-cli-latest
- name: Azure Functions
href: ../application-insights/azure-functions-supported-features.md?toc=/azure/azure-monitor/toc.json
- name: Azure PowerShell
items:
- name: Monitor
href: /powershell/module/azurerm.insights
- name: Logs
href: /powershell/module/azurerm.operationalinsights
- name: REST API
items:
- name: Monitor
href: /rest/api/monitor/
- name: Logs
href: /rest/api/loganalytics
- name: Metrics
items:
- name: Supported metrics
href: ../monitoring-and-diagnostics/monitoring-supported-metrics.md?toc=/azure/azure-monitor/toc.json
- name: Supported metrics for newer alerts
href: ../monitoring-and-diagnostics/monitoring-near-real-time-metric-alerts.md?toc=/azure/azure-monitor/toc.json
- name: Schemas
items:
- name: Diagnostic logs services, categories, and schemas
href: ../monitoring-and-diagnostics/monitoring-diagnostic-logs-schema.md?toc=/azure/azure-monitor/toc.json
- name: Activity log event schema
href: ../monitoring-and-diagnostics/monitoring-activity-log-schema.md?toc=/azure/azure-monitor/toc.json
- name: Azure Diagnostics extension schema
href: ../monitoring-and-diagnostics/azure-diagnostics-schema.md?toc=/azure/azure-monitor/toc.json
items:
- name: 1.3 and later
href: ../monitoring-and-diagnostics/azure-diagnostics-schema-1dot3-and-later.md?toc=/azure/azure-monitor/toc.json
- name: 1.2
href: ../monitoring-and-diagnostics/azure-diagnostics-schema-1dot2.md?toc=/azure/azure-monitor/toc.json
- name: 1.0
href: ../monitoring-and-diagnostics/azure-diagnostics-schema-1dot0.md?toc=/azure/azure-monitor/toc.json
- name: Feature and API Retirement
items:
- name: Classic autoscale & metrics API
href: ./platform/classic-api-retirement-metrics-autoscale.md
- name: Classic alerting & monitoring
href: ../monitoring-and-diagnostics/monitoring-classic-retirement.md?toc=/azure/azure-monitor/toc.json
- name: Extend alerts from Log Analytics to Azure
href: ../monitoring-and-diagnostics/monitoring-alerts-extend.md?toc=/azure/azure-monitor/toc.json
- name: Copy alerts from OMS portal to Azure portal
href: ../monitoring-and-diagnostics/monitoring-alerts-extend-tool.md?toc=/azure/azure-monitor/toc.json
- name: Resources
items:
- name: Azure Roadmap
href: https://azure.microsoft.com/roadmap/
- name: Pricing
href: https://azure.microsoft.com/pricing/details/log-analytics/
- name: Pricing calculator
href: https://azure.microsoft.com/pricing/calculator/
- name: News
items:
- name: Application Insights service updates
href: https://azure.microsoft.com/updates/?product=application-insights
- name: Log Analytics service updates
href: https://azure.microsoft.com/updates/?product=log-analytics
- name: SDK release notes
href: ../application-insights/app-insights-release-notes.md
- name: Release notes for Developer Analytics Tools
href: ../application-insights/app-insights-release-notes-vsix.md
- name: Windows Analytics
href: https://www.microsoft.com/en-us/WindowsForBusiness/windows-analytics
- name: Regional availability