{"id":28643,"date":"2020-12-29T11:52:53","date_gmt":"2020-12-29T11:52:53","guid":{"rendered":"https:\/\/www.testpreptraining.com\/tutorial\/?page_id=28643"},"modified":"2020-12-29T11:52:54","modified_gmt":"2020-12-29T11:52:54","slug":"monitor-stream-analytics","status":"publish","type":"page","link":"https:\/\/www.testpreptraining.ai\/tutorial\/monitor-stream-analytics\/","title":{"rendered":"Monitor Stream Analytics"},"content":{"rendered":"\n<p><a href=\"https:\/\/www.testpreptraining.ai\/tutorial\/exam-dp-200-implementing-an-azure-data-solution\/\" target=\"_blank\" rel=\"noreferrer noopener\">Go back to DP-200 Tutorials<\/a><\/p>\n\n\n\n<p>In this we will learn how to monitor and manage Stream Analytics resources with Azure PowerShell cmdlets and powershell scripting that execute basic Stream Analytics tasks.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Azure PowerShell cmdlets for Stream Analytics<\/strong><\/h4>\n\n\n\n<p>The following Azure PowerShell cmdlets can be used to monitor and manage Azure Stream Analytics jobs. Note that Azure PowerShell has different versions. In the examples listed the first command is for Azure PowerShell 0.9.8, the second command is for Azure PowerShell 1.0. The Azure PowerShell 1.0 commands will always have &#8220;Az&#8221; in the command.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Get-AzureStreamAnalyticsJob | Get-AzStreamAnalyticsJob<\/strong><\/h4>\n\n\n\n<p>Lists all Stream Analytics jobs defined in the Azure subscription or specified resource group, or gets job information about a specific job within a resource group.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Example 1<\/strong><\/h5>\n\n\n\n<p><strong>Azure PowerShell 0.9.8:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Get-AzureStreamAnalyticsJob<\/em><\/p>\n\n\n\n<p><strong>Azure PowerShell 1.0:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Get-AzStreamAnalyticsJob<\/em><\/p>\n\n\n\n<p>This PowerShell command returns information about all the Stream Analytics jobs in the Azure subscription.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Example 2<\/strong><\/h5>\n\n\n\n<p><strong>Azure PowerShell 0.9.8:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Get-AzureStreamAnalyticsJob -ResourceGroupName StreamAnalytics-Default-Central-US<\/em><\/p>\n\n\n\n<p><strong>Azure PowerShell 1.0:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Get-AzStreamAnalyticsJob -ResourceGroupName StreamAnalytics-Default-Central-US<\/em><\/p>\n\n\n\n<p>This PowerShell command returns information about all the Stream Analytics jobs in the resource group StreamAnalytics-Default-Central-US.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Get-AzureStreamAnalyticsInput | Get-AzStreamAnalyticsInput<\/strong><\/h4>\n\n\n\n<p>Lists all of the inputs that are defined in a specified Stream Analytics job, or gets information about a specific input<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Example 1<\/strong><\/h5>\n\n\n\n<p><strong>Azure PowerShell 0.9.8:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Get-AzureStreamAnalyticsInput -ResourceGroupName StreamAnalytics-Default-Central-US -JobName StreamingJob<\/em><\/p>\n\n\n\n<p><strong>Azure PowerShell 1.0:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Get-AzStreamAnalyticsInput -ResourceGroupName StreamAnalytics-Default-Central-US -JobName StreamingJob<\/em><\/p>\n\n\n\n<p>This PowerShell command returns information about all the inputs defined in the job StreamingJob.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><a href=\"https:\/\/www.testpreptraining.ai\/implementing-an-azure-data-solution-dp-200-free-practice-test\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"961\" height=\"150\" src=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/08\/dp-200-pracice-tests-1.png\" alt=\"Monitor Stream Analytics DP-200 practice tests\" class=\"wp-image-18535\" srcset=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/08\/dp-200-pracice-tests-1.png 961w, https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/08\/dp-200-pracice-tests-1-750x117.png 750w\" sizes=\"auto, (max-width: 961px) 100vw, 961px\" \/><\/a><\/figure><\/div>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Get-AzureStreamAnalyticsOutput | Get-AzStreamAnalyticsOutput<\/strong><\/h4>\n\n\n\n<p>Lists all of the outputs that are defined in a specified Stream Analytics job, or gets information about a specific output.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Example 1<\/strong><\/h5>\n\n\n\n<p><strong>Azure PowerShell 0.9.8:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Get-AzureStreamAnalyticsOutput -ResourceGroupName StreamAnalytics-Default-Central-US -JobName StreamingJob<\/em><\/p>\n\n\n\n<p><strong>Azure PowerShell 1.0:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Get-AzStreamAnalyticsOutput -ResourceGroupName StreamAnalytics-Default-Central-US -JobName StreamingJob<\/em><\/p>\n\n\n\n<p>This PowerShell command returns information about the outputs defined in the job StreamingJob.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>New-AzureStreamAnalyticsInput | New-AzStreamAnalyticsInput<\/strong><\/h4>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, creates a new input within a Stream Analytics job, or updates an existing specified input.<\/li><li>Secondly, the name of the input can be specified in the .json file or on the command line. If both are specified, the name on the command line must be the same as the one in the file.<\/li><li>Thirdly, if you specify an input that already exists and do not specify the -Force parameter, the cmdlet will ask whether or not to replace the existing input.<\/li><li>Lastly, if you specify the -Force parameter and specify an existing input name, the input will be replaced without confirmation.<\/li><\/ul>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Example 1<\/strong><\/h5>\n\n\n\n<p><strong>Azure PowerShell 0.9.8:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>New-AzureStreamAnalyticsInput -ResourceGroupName StreamAnalytics-Default-Central-US -JobName StreamingJob -File &#8220;C:\\Input.json&#8221;<\/em><\/p>\n\n\n\n<p><strong>Azure PowerShell 1.0:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>New-AzStreamAnalyticsInput -ResourceGroupName StreamAnalytics-Default-Central-US -JobName StreamingJob -File &#8220;C:\\Input.json&#8221;<\/em><\/p>\n\n\n\n<p><em>This PowerShell command creates a new input from the file Input.json. If an existing input with the name specified in the input definition file is already defined, the cmdlet will ask whether or not to replace it.<\/em><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>New-AzureStreamAnalyticsTransformation | New-AzStreamAnalyticsTransformation<\/strong><\/h4>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, creates a new transformation within a Stream Analytics job, or updates the existing transformation.<\/li><li>Secondly, the name of the transformation can be specified in the .json file or on the command line. If both are specified, the name on the command line must be the same as the one in the file.<\/li><li>Thirdly, if you specify a transformation that already exists and do not specify the -Force parameter, the cmdlet will ask whether or not to replace the existing transformation.<\/li><li>Lastly, if you specify the -Force parameter and specify an existing transformation name, the transformation will be replaced without confirmation.<\/li><\/ul>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Example 1<\/strong><\/h5>\n\n\n\n<p><strong>Azure PowerShell 0.9.8:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>New-AzureStreamAnalyticsTransformation -ResourceGroupName StreamAnalytics-Default-Central-US -File &#8220;C:\\Transformation.json&#8221; -JobName StreamingJob -Name StreamingJobTransform<\/em><\/p>\n\n\n\n<p><strong>Azure PowerShell 1.0:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>New-AzStreamAnalyticsTransformation -ResourceGroupName StreamAnalytics-Default-Central-US -File &#8220;C:\\Transformation.json&#8221; -JobName StreamingJob -Name StreamingJobTransform<\/em><\/p>\n\n\n\n<p><em>This PowerShell command creates a new transformation called StreamingJobTransform in the job StreamingJob. If an existing transformation is already defined with this name, the cmdlet will ask whether or not to replace it.<\/em><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Remove-AzureStreamAnalyticsInput | Remove-AzStreamAnalyticsInput<\/strong><\/h4>\n\n\n\n<p>Asynchronously deletes a specific input from a Stream Analytics job in Microsoft Azure. However, if you specify the -Force parameter, the input will be deleted without confirmation.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Example 1<\/strong><\/h5>\n\n\n\n<p><strong>Azure PowerShell 0.9.8:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Remove-AzureStreamAnalyticsInput -ResourceGroupName StreamAnalytics-Default-Central-US -JobName StreamingJob -Name EventStream<\/em><\/p>\n\n\n\n<p><strong>Azure PowerShell 1.0:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Remove-AzStreamAnalyticsInput -ResourceGroupName StreamAnalytics-Default-Central-US -JobName StreamingJob -Name EventStream<\/em><\/p>\n\n\n\n<p>This PowerShell command removes the input EventStream in the job StreamingJob.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Remove-AzureStreamAnalyticsOutput | Remove-AzStreamAnalyticsOutput<\/strong><\/h4>\n\n\n\n<p>Asynchronously deletes a specific output from a Stream Analytics job in Microsoft Azure. However, if you specify the -Force parameter, the output will be deleted without confirmation.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Example 1<\/strong><\/h5>\n\n\n\n<p><strong>Azure PowerShell 0.9.8:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Remove-AzureStreamAnalyticsOutput -ResourceGroupName StreamAnalytics-Default-Central-US -JobName StreamingJob -Name Output<\/em><\/p>\n\n\n\n<p><strong>Azure PowerShell 1.0:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Remove-AzStreamAnalyticsOutput -ResourceGroupName StreamAnalytics-Default-Central-US -JobName StreamingJob -Name Output<\/em><\/p>\n\n\n\n<p>This PowerShell command removes the output Output in the job StreamingJob.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Start-AzureStreamAnalyticsJob | Start-AzStreamAnalyticsJob<\/strong><\/h4>\n\n\n\n<p>Asynchronously deploys and starts a Stream Analytics job in Microsoft Azure.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Example 1<\/strong><\/h5>\n\n\n\n<p><strong>Azure PowerShell 0.9.8:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Start-AzureStreamAnalyticsJob -ResourceGroupName StreamAnalytics-Default-Central-US -Name StreamingJob -OutputStartMode CustomTime -OutputStartTime 2012-12-12T12:12:12Z<\/em><\/p>\n\n\n\n<p><strong>Azure PowerShell 1.0:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Start-AzStreamAnalyticsJob -ResourceGroupName StreamAnalytics-Default-Central-US -Name StreamingJob -OutputStartMode CustomTime -OutputStartTime 2012-12-12T12:12:12Z<\/em><\/p>\n\n\n\n<p>This PowerShell command starts the job StreamingJob with a custom output start time set to December 12, 2012, 12:12:12 UTC.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Stop-AzureStreamAnalyticsJob | Stop-AzStreamAnalyticsJob<\/strong><\/h4>\n\n\n\n<p>Asynchronously stops a Stream Analytics job from running in Microsoft Azure and de-allocates resources that were that were being used. Moreover, the job definition and metadata will remain available within your subscription through both the Azure portal and management APIs, such that the job can be edited and restarted. However, you will not be charged for a job in the stopped state.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Example 1<\/strong><\/h5>\n\n\n\n<p><strong>Azure PowerShell 0.9.8:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Stop-AzureStreamAnalyticsJob -ResourceGroupName StreamAnalytics-Default-Central-US -Name StreamingJob<\/em><\/p>\n\n\n\n<p><strong>Azure PowerShell 1.0:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Stop-AzStreamAnalyticsJob -ResourceGroupName StreamAnalytics-Default-Central-US -Name StreamingJob<\/em><\/p>\n\n\n\n<p>This PowerShell command stops the job StreamingJob.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Test-AzureStreamAnalyticsInput | Test-AzStreamAnalyticsInput<\/strong><\/h4>\n\n\n\n<p>Tests the ability of Stream Analytics to connect to a specified input.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Example 1<\/strong><\/h5>\n\n\n\n<p><strong>Azure PowerShell 0.9.8:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Test-AzureStreamAnalyticsInput -ResourceGroupName StreamAnalytics-Default-Central-US -JobName StreamingJob -Name EntryStream<\/em><\/p>\n\n\n\n<p><strong>Azure PowerShell 1.0:<\/strong><\/p>\n\n\n\n<p><strong>PowerShell<\/strong><br><em>Test-AzStreamAnalyticsInput -ResourceGroupName StreamAnalytics-Default-Central-US -JobName StreamingJob -Name EntryStream<\/em><\/p>\n\n\n\n<p>This PowerShell command tests the connection status of the input EntryStream in StreamingJob.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><a href=\"https:\/\/www.testpreptraining.ai\/implementing-an-azure-data-solution-dp-200-practice-exam\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"961\" height=\"150\" src=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/08\/dp-200-online-course-1.png\" alt=\"Monitor Stream Analytics DP-200 Online course\" class=\"wp-image-18534\" srcset=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/08\/dp-200-online-course-1.png 961w, https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/08\/dp-200-online-course-1-750x117.png 750w\" sizes=\"auto, (max-width: 961px) 100vw, 961px\" \/><\/a><\/figure><\/div>\n\n\n\n<p class=\"has-text-align-right\"><strong>Reference: <\/strong><a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/stream-analytics\/stream-analytics-monitor-and-manage-jobs-use-powershell\" target=\"_blank\" rel=\"noreferrer noopener\">Microsoft Documentation<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/www.testpreptraining.ai\/tutorial\/exam-dp-200-implementing-an-azure-data-solution\/\" target=\"_blank\" rel=\"noreferrer noopener\">Go back to DP-200 Tutorials<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Go back to DP-200 Tutorials In this we will learn how to monitor and manage Stream Analytics resources with Azure PowerShell cmdlets and powershell scripting that execute basic Stream Analytics tasks. Azure PowerShell cmdlets for Stream Analytics The following Azure PowerShell cmdlets can be used to monitor and manage Azure Stream Analytics jobs. Note that&#8230;<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"categories":[],"tags":[],"class_list":["post-28643","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Monitor Stream Analytics - Testprep Training Tutorials<\/title>\n<meta name=\"description\" content=\"Enhance your skills by learning about how to Monitor Stream Analytics using Microsoft DP-200 online course and Practice Exam Now!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.testpreptraining.ai\/tutorial\/monitor-stream-analytics\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Monitor Stream Analytics - Testprep Training Tutorials\" \/>\n<meta property=\"og:description\" content=\"Enhance your skills by learning about how to Monitor Stream Analytics using Microsoft DP-200 online course and Practice Exam Now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.testpreptraining.ai\/tutorial\/monitor-stream-analytics\/\" \/>\n<meta property=\"og:site_name\" content=\"Testprep Training Tutorials\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-29T11:52:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/08\/dp-200-pracice-tests-1.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/monitor-stream-analytics\/\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/monitor-stream-analytics\/\",\"name\":\"Monitor Stream Analytics - Testprep Training Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#website\"},\"datePublished\":\"2020-12-29T11:52:53+00:00\",\"dateModified\":\"2020-12-29T11:52:54+00:00\",\"description\":\"Enhance your skills by learning about how to Monitor Stream Analytics using Microsoft DP-200 online course and Practice Exam Now!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/monitor-stream-analytics\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.testpreptraining.ai\/tutorial\/monitor-stream-analytics\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/monitor-stream-analytics\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Monitor Stream Analytics\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#website\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\",\"name\":\"Testprep Training Tutorials\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.testpreptraining.ai\/tutorial\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#organization\",\"name\":\"Testprep Training\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png\",\"contentUrl\":\"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png\",\"width\":583,\"height\":153,\"caption\":\"Testprep Training\"},\"image\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Monitor Stream Analytics - Testprep Training Tutorials","description":"Enhance your skills by learning about how to Monitor Stream Analytics using Microsoft DP-200 online course and Practice Exam Now!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.testpreptraining.ai\/tutorial\/monitor-stream-analytics\/","og_locale":"en_US","og_type":"article","og_title":"Monitor Stream Analytics - Testprep Training Tutorials","og_description":"Enhance your skills by learning about how to Monitor Stream Analytics using Microsoft DP-200 online course and Practice Exam Now!","og_url":"https:\/\/www.testpreptraining.ai\/tutorial\/monitor-stream-analytics\/","og_site_name":"Testprep Training Tutorials","article_modified_time":"2020-12-29T11:52:54+00:00","og_image":[{"url":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/08\/dp-200-pracice-tests-1.png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/monitor-stream-analytics\/","url":"https:\/\/www.testpreptraining.ai\/tutorial\/monitor-stream-analytics\/","name":"Monitor Stream Analytics - Testprep Training Tutorials","isPartOf":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#website"},"datePublished":"2020-12-29T11:52:53+00:00","dateModified":"2020-12-29T11:52:54+00:00","description":"Enhance your skills by learning about how to Monitor Stream Analytics using Microsoft DP-200 online course and Practice Exam Now!","breadcrumb":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/monitor-stream-analytics\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.testpreptraining.ai\/tutorial\/monitor-stream-analytics\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/monitor-stream-analytics\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.testpreptraining.ai\/tutorial\/"},{"@type":"ListItem","position":2,"name":"Monitor Stream Analytics"}]},{"@type":"WebSite","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#website","url":"https:\/\/www.testpreptraining.ai\/tutorial\/","name":"Testprep Training Tutorials","description":"","publisher":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.testpreptraining.ai\/tutorial\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#organization","name":"Testprep Training","url":"https:\/\/www.testpreptraining.ai\/tutorial\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/","url":"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png","contentUrl":"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png","width":583,"height":153,"caption":"Testprep Training"},"image":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/28643","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/comments?post=28643"}],"version-history":[{"count":6,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/28643\/revisions"}],"predecessor-version":[{"id":28780,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/28643\/revisions\/28780"}],"wp:attachment":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/media?parent=28643"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/categories?post=28643"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/tags?post=28643"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}