<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>log analytics Archives - Apostolidis Cloud Corner</title>
	<atom:link href="https://www.cloudcorner.gr/tag/log-analytics/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.cloudcorner.gr/tag/log-analytics/</link>
	<description>Remarks from a Cloud Architect encounters</description>
	<lastBuildDate>Fri, 26 Apr 2024 07:43:21 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>

<image>
	<url>https://www.cloudcorner.gr/wp-content/uploads/2021/04/cropped-cloudcorner2-32x32.png</url>
	<title>log analytics Archives - Apostolidis Cloud Corner</title>
	<link>https://www.cloudcorner.gr/tag/log-analytics/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Monitor &#038; Dependencies agents at once!</title>
		<link>https://www.cloudcorner.gr/microsoft/azure/monitor-dependencies-agents-at-once/</link>
					<comments>https://www.cloudcorner.gr/microsoft/azure/monitor-dependencies-agents-at-once/#respond</comments>
		
		<dc:creator><![CDATA[Pantelis Apostolidis]]></dc:creator>
		<pubDate>Fri, 26 Apr 2024 07:30:11 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[azure]]></category>
		<category><![CDATA[azurerm]]></category>
		<category><![CDATA[dependency agent]]></category>
		<category><![CDATA[dependency analysis]]></category>
		<category><![CDATA[log analytics]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[service map]]></category>
		<guid isPermaLink="false">https://www.cloudcorner.gr/?p=4192</guid>

					<description><![CDATA[<p>Download the two agents from the links below: The Monitor agent needs extravtion. To extract use the command: MMASetup-&#60;platform>.exe /c</p>
<p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/monitor-dependencies-agents-at-once/">Monitor &amp; Dependencies agents at once!</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Download the two agents from the links below:</p>



<ul class="wp-block-list">
<li><a href="https://go.microsoft.com/fwlink/?LinkId=828603">https://go.microsoft.com/fwlink/?LinkId=828603</a></li>



<li><a href="https://aka.ms/dependencyagentwindows">https://aka.ms/dependencyagentwindows</a></li>
</ul>



<p>The Monitor agent needs extravtion. To extract use the command: MMASetup-&lt;platform>.exe /c /t:&lt;Full Path></p>



<p>e.g.: MMASetup-AMD64.exe /c /t:C:\Temp</p>



<p>Add all files to a network share like: <a href="file://server/share/">\\server\share\</a></p>



<p>φτιάξε ένα bat or cmd file, π.χ. setupagents.bat με το παρακάτω περιεχόμενο αλλά βάλε τα δικά σου shares, workspace ID &amp; Key:</p>



<p>create a bat or cmd file, e.g. setupagents.bat and add the below content. Change the share link, the Workspace ID and Key:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="bat" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">net use y: \\server\share\

y:\Setup.exe /qn NOAPM=1 ADD_OPINSIGHTS_WORKSPACE=1 OPINSIGHTS_WORKSPACE_AZURE_CLOUD_TYPE=0 OPINSIGHTS_WORKSPACE_ID="&lt;your workspace ID>" OPINSIGHTS_WORKSPACE_KEY="&lt;your workspace key>" AcceptEndUserLicenseAgreement=1

y:\InstallDependencyAgent-Windows.exe /S /RebootMode=manual

net use y: /delete</pre>



<p>For example, I created the setupagents.bat, and added the files to the network share  <a href="file://dcvm/Temp">\\dcvm\Temp</a> . The content of my setupagents.bat is:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">net use y: \\dcvm\Temp

y:\Setup.exe /qn NOAPM=1 ADD_OPINSIGHTS_WORKSPACE=1 OPINSIGHTS_WORKSPACE_AZURE_CLOUD_TYPE=0 OPINSIGHTS_WORKSPACE_ID="b987ae35-b7e3-44ba-bd27-000000000000" OPINSIGHTS_WORKSPACE_KEY="OZz8YN5A12biINsMbja9PHkZLDdYNNZEw+QDIsAmi0ys/2+000000000000==" AcceptEndUserLicenseAgreement=1

y:\Temp\InstallDependencyAgent-Windows.exe /S /RebootMode=manual

net use y: /delete</pre>



<p>After running the setupagents.bat, both agents are installed. You can check at the programs and features:</p>



<figure class="wp-block-image size-full is-resized"><a href="https://www.cloudcorner.gr/wp-content/uploads/2024/04/image-46.png"><img fetchpriority="high" decoding="async" width="813" height="246" src="https://www.cloudcorner.gr/wp-content/uploads/2024/04/image-46.png" alt="" class="wp-image-4194" style="width:446px;height:auto" srcset="https://www.cloudcorner.gr/wp-content/uploads/2024/04/image-46.png 813w, https://www.cloudcorner.gr/wp-content/uploads/2024/04/image-46-300x91.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2024/04/image-46-768x232.png 768w" sizes="(max-width: 813px) 100vw, 813px" /></a></figure>



<p>At the control panel the Microsoft Monitoring Agent will appear and open it to check that it is connected to y our Log Analytics Workspace.</p>



<figure class="wp-block-image size-full is-resized"><a href="https://www.cloudcorner.gr/wp-content/uploads/2024/04/image-47.png"><img decoding="async" width="351" height="119" src="https://www.cloudcorner.gr/wp-content/uploads/2024/04/image-47.png" alt="" class="wp-image-4195" style="width:224px;height:auto" srcset="https://www.cloudcorner.gr/wp-content/uploads/2024/04/image-47.png 351w, https://www.cloudcorner.gr/wp-content/uploads/2024/04/image-47-300x102.png 300w" sizes="(max-width: 351px) 100vw, 351px" /></a></figure>



<figure class="wp-block-image size-full is-resized"><a href="https://www.cloudcorner.gr/wp-content/uploads/2024/04/image-48.png"><img decoding="async" width="786" height="301" src="https://www.cloudcorner.gr/wp-content/uploads/2024/04/image-48.png" alt="" class="wp-image-4196" style="width:520px;height:auto" srcset="https://www.cloudcorner.gr/wp-content/uploads/2024/04/image-48.png 786w, https://www.cloudcorner.gr/wp-content/uploads/2024/04/image-48-300x115.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2024/04/image-48-768x294.png 768w" sizes="(max-width: 786px) 100vw, 786px" /></a></figure>



<p>Here is a list of sample Log Search commands for the dependency analysis:</p>



<ul class="wp-block-list">
<li><a href="https://learn.microsoft.com/en-us/previous-versions/azure/azure-monitor/vm/service-map#sample-log-searches">https://learn.microsoft.com/en-us/previous-versions/azure/azure-monitor/vm/service-map#sample-log-searches</a></li>



<li><a href="https://learn.microsoft.com/en-us/azure/migrate/how-to-create-group-machine-dependencies#sample-review-inbound-connections">https://learn.microsoft.com/en-us/azure/migrate/how-to-create-group-machine-dependencies#sample-review-inbound-connections</a></li>
</ul>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author"><div class="saboxplugin-tab"><div class="saboxplugin-gravatar"><img loading="lazy" decoding="async" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/05/mvpsummit2019.jpg" width="100"  height="100" alt="Pantelis Apostolidis" itemprop="image"></div><div class="saboxplugin-authorname"><a href="https://www.cloudcorner.gr/author/admin/" class="vcard author" rel="author"><span class="fn">Pantelis Apostolidis</span></a></div><div class="saboxplugin-desc"><div itemprop="description"><p>Pantelis Apostolidis is a Sr. Specialist, Azure at Microsoft and a former Microsoft Azure MVP. For the last 20 years, Pantelis has been involved to major cloud projects in Greece and abroad, helping companies to adopt and deploy cloud technologies, driving business value. He is entitled to a lot of Microsoft Expert Certifications, demonstrating his proven experience in delivering high quality solutions. He is an author, blogger and he is acting as a spokesperson for conferences, workshops and webinars. He is also an active member of several communities as a moderator in azureheads.gr and autoexec.gr. Follow him on Twitter @papostolidis.</p>
</div></div><div class="saboxplugin-web "><a href="https://www.cloudcorner.gr" target="_self" >www.cloudcorner.gr</a></div><div class="clearfix"></div><div class="saboxplugin-socials "><a title="Facebook" target="_blank" href="https://www.facebook.com/pantelis.apostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-facebook" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 264 512"><path fill="currentColor" d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path></svg></span></a><a title="Linkedin" target="_blank" href="https://www.linkedin.com/in/papostolidis/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-linkedin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path></svg></span></a><a title="Instagram" target="_blank" href="https://www.instagram.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-instagram" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></a><a title="Rss" target="_blank" href="https://wwwcloudcorner.gr/feed/rdf/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-rss" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"></path></svg></span></a><a title="Twitter" target="_blank" href="https://twitter.com/papostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-twitter" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z" /></svg></span></a><a title="Github" target="_blank" href="https://github.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-github" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg></span></a><a title="User email" target="_self" href="mailto:&#112;&#114;&#111;&#120;imag&#114;&#064;&#104;&#111;t&#109;&#097;&#105;&#108;.c&#111;&#109;" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-user_email" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg></span></a></div></div></div><p><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fmonitor-dependencies-agents-at-once%2F&amp;linkname=Monitor%20%26%20Dependencies%20agents%20at%20once%21" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_print" href="https://www.addtoany.com/add_to/print?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fmonitor-dependencies-agents-at-once%2F&amp;linkname=Monitor%20%26%20Dependencies%20agents%20at%20once%21" title="Print" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fmonitor-dependencies-agents-at-once%2F&#038;title=Monitor%20%26%20Dependencies%20agents%20at%20once%21" data-a2a-url="https://www.cloudcorner.gr/microsoft/azure/monitor-dependencies-agents-at-once/" data-a2a-title="Monitor &amp; Dependencies agents at once!"><img src="https://static.addtoany.com/buttons/share_save_171_16.png" alt="Share"></a></p><p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/monitor-dependencies-agents-at-once/">Monitor &amp; Dependencies agents at once!</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.cloudcorner.gr/microsoft/azure/monitor-dependencies-agents-at-once/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Azure Monitor for VMs &#8211; Health, Performance &#038; Service Map</title>
		<link>https://www.cloudcorner.gr/microsoft/azure/azure-monitor-for-vms-health-performance-service-map/</link>
					<comments>https://www.cloudcorner.gr/microsoft/azure/azure-monitor-for-vms-health-performance-service-map/#respond</comments>
		
		<dc:creator><![CDATA[Pantelis Apostolidis]]></dc:creator>
		<pubDate>Thu, 07 Feb 2019 13:58:51 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[azure]]></category>
		<category><![CDATA[azure monitor]]></category>
		<category><![CDATA[azurerm]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[log analytics]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[performance monitor]]></category>
		<category><![CDATA[service map]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[vm]]></category>
		<guid isPermaLink="false">https://www.e-apostolidis.gr/?p=2445</guid>

					<description><![CDATA[<p>Get real insights about your Windows and Linux VMs &#38; VMSSs performance and their dependencies with Azure Monitor. Integrate with</p>
<p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/azure-monitor-for-vms-health-performance-service-map/">Azure Monitor for VMs &#8211; Health, Performance &#038; Service Map</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Get real insights about your Windows and Linux VMs &amp; VMSSs performance and their dependencies with Azure Monitor. Integrate with Log Analytics for even more in depth analysis and retain the data over time. Health, Performance &amp; Service Map of your VM in a dashboard.</p>
<p id="bVhdDCA"><img loading="lazy" decoding="async" width="1637" height="855" class="alignnone size-full wp-image-2470 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5c398d6e5f6.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c398d6e5f6.png 1637w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c398d6e5f6-300x157.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c398d6e5f6-768x401.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c398d6e5f6-1024x535.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c398d6e5f6-600x313.png 600w" sizes="auto, (max-width: 1637px) 100vw, 1637px" /></p>
<h2>Deploy to Single VM</h2>
<p>For a single VM, go to the VMs blade, scroll down to the &#8220;Monitoring&#8221; section, select &#8220;Insights&#8221; and press &#8220;Try now&#8221;</p>
<p id="UBWnPQw"><img loading="lazy" decoding="async" width="1381" height="485" class="alignnone size-full wp-image-2448 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5befca9f00a.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5befca9f00a.png 1381w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5befca9f00a-300x105.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5befca9f00a-768x270.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5befca9f00a-1024x360.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5befca9f00a-600x211.png 600w" sizes="auto, (max-width: 1381px) 100vw, 1381px" /></p>
<p>The Azure Monitor Insights Onboarding wizard will open. If your VM is already onboard at a Log Analytics workspace just click Enable. Otherwize select a Log Analytics workspace or <a href="https://docs.microsoft.com/en-us/azure/azure-monitor/learn/quick-create-workspace">create one.</a></p>
<p id="yyAPaYO"><img loading="lazy" decoding="async" width="811" height="746" class="alignnone size-full wp-image-2449 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5bf00d38e8f.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf00d38e8f.png 811w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf00d38e8f-300x276.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf00d38e8f-768x706.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf00d38e8f-600x552.png 600w" sizes="auto, (max-width: 811px) 100vw, 811px" /></p>
<p>You will start seeing data form the VM in about 20-30 minutes.</p>
<h2>Deploy to multiple VMs using Azure Policy</h2>
<p>For deploying to multiple VMs, the easiest way is to use Azure Policy</p>
<p>Go to the Azure Policy, select Assignments and press &#8220;Assign initiative&#8221;</p>
<p id="MNeqiRr"><img loading="lazy" decoding="async" width="520" height="317" class="alignnone size-full wp-image-2452 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5bf323455aa.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf323455aa.png 520w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf323455aa-300x183.png 300w" sizes="auto, (max-width: 520px) 100vw, 520px" /></p>
<p>The first option is the <span style="font-size: 1.0625rem;">Scope. Press the three dots &#8220;&#8230;&#8221; at the Scope field. You can choose a a Management Group, a Subscription or a Resource Group. So if you just select a Management Group (And don&#8217;t select subscription and resource group), this policy will apply to all Subscriptions under the Management Group and of course to all resources of the subscription. If you choose a Subscription (and don&#8217;t select a resource group then the policy will apply to all resources of the subscription. Finally if you choose a resource group then the policy will apply only to this resource group. Later we will see how to select specific VMs in the Subscription or Resource group.</span></p>
<p id="JanGNqi"><img loading="lazy" decoding="async" width="600" height="278" class="alignnone size-full wp-image-2454 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5bf406da69e.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf406da69e.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf406da69e-300x139.png 300w" sizes="auto, (max-width: 600px) 100vw, 600px" /></p>
<p>After selecting the Scope you can add exclusions. There you can check the VMs you don&#8217;t want this policy to apply.</p>
<p id="fFkZxHU"><img loading="lazy" decoding="async" width="815" height="157" class="alignnone size-full wp-image-2455 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5bf53425fb8.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf53425fb8.png 815w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf53425fb8-300x58.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf53425fb8-768x148.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf53425fb8-600x116.png 600w" sizes="auto, (max-width: 815px) 100vw, 815px" /></p>
<p>The next step is to select the Policy. At the BASICS section, press the three dots &#8220;&#8230;&#8221; near the &#8220;Initiative definition&#8221; and find the &#8220;Enable Azure Monitor for VMs&#8221;</p>
<p id="nRXeJuw"><img loading="lazy" decoding="async" width="832" height="160" class="alignnone size-full wp-image-2456 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5bf5453acfb.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf5453acfb.png 832w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf5453acfb-300x58.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf5453acfb-768x148.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5bf5453acfb-600x115.png 600w" sizes="auto, (max-width: 832px) 100vw, 832px" /></p>
<p>Next step is to configure the Parameters. There select the Log Analytics workspace that the VM will onboard, or create a new one. Optionally you can provide a list of VMs instead of adding all of them</p>
<p id="utrSWJD"><img loading="lazy" decoding="async" width="809" height="218" class="alignnone size-full wp-image-2459 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5c2a45aefe4.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2a45aefe4.png 809w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2a45aefe4-300x81.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2a45aefe4-768x207.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2a45aefe4-600x162.png 600w" sizes="auto, (max-width: 809px) 100vw, 809px" /></p>
<p>Finally press Apply. Back at the Azure Policy main menu you will see the new Definition Assignment.</p>
<p id="nUjBtcJ"><img loading="lazy" decoding="async" width="1141" height="158" class="alignnone size-full wp-image-2460 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5c2d7e49db4.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2d7e49db4.png 1141w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2d7e49db4-300x42.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2d7e49db4-768x106.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2d7e49db4-1024x142.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2d7e49db4-600x83.png 600w" sizes="auto, (max-width: 1141px) 100vw, 1141px" /></p>
<h2>View the Health / Performance / Service Map of the VMs</h2>
<p>To view the Azure Monitor of the VMs, go to the VM that you have enabled Insights, select the Insights blade and you will be able to see the health status not only for the common CPU. Memory, Disk,</p>
<p id="JrZsoMv"><img loading="lazy" decoding="async" width="1060" height="867" class="alignnone size-full wp-image-2461 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5c2df63d05c.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2df63d05c.png 1060w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2df63d05c-300x245.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2df63d05c-768x628.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2df63d05c-1024x838.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2df63d05c-600x491.png 600w" sizes="auto, (max-width: 1060px) 100vw, 1060px" /></p>
<p>But also for the services that run inside the VM and the Azure Monitor discovered.</p>
<p id="BsWcOJI"><img loading="lazy" decoding="async" width="502" height="300" class="alignnone size-full wp-image-2462 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5c2e899a90e.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2e899a90e.png 502w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2e899a90e-300x179.png 300w" sizes="auto, (max-width: 502px) 100vw, 502px" /></p>
<p>By clicking on any service you will have a list of all logs of this service</p>
<p id="UWfDlui"><img loading="lazy" decoding="async" width="899" height="129" class="alignnone size-full wp-image-2464 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5c2f02bb5e2.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f02bb5e2.png 899w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f02bb5e2-300x43.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f02bb5e2-768x110.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f02bb5e2-600x86.png 600w" sizes="auto, (max-width: 899px) 100vw, 899px" /></p>
<p>At the performance section you have the ability to select time range and have performance analytics for a requisted period of time</p>
<p id="mQUfnTO"><img loading="lazy" decoding="async" width="1009" height="766" class="alignnone size-full wp-image-2465 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5c2f410763d.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f410763d.png 1009w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f410763d-300x228.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f410763d-768x583.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f410763d-600x456.png 600w" sizes="auto, (max-width: 1009px) 100vw, 1009px" /></p>
<p>Finally at the MAp, you have a service map of the services and ports that are open and listening</p>
<p id="OJcYUtx"><img loading="lazy" decoding="async" width="851" height="755" class="alignnone size-full wp-image-2466 " src="https://www.e-apostolidis.gr/wp-content/uploads/2019/02/img_5c5c2f92b1c19.png" alt="" srcset="https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f92b1c19.png 851w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f92b1c19-300x266.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f92b1c19-768x681.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2019/02/img_5c5c2f92b1c19-600x532.png 600w" sizes="auto, (max-width: 851px) 100vw, 851px" /></p>
<p>&nbsp;</p>
<p>Product Documentation: <a href="https://docs.microsoft.com/en-us/azure/azure-monitor/insights/vminsights-overview">https://docs.microsoft.com/en-us/azure/azure-monitor/insights/vminsights-overview</a></p>
<p>&nbsp;</p>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author">
<div class="saboxplugin-tab">
<div class="saboxplugin-gravatar"><img loading="lazy" decoding="async" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/05/mvpsummit2019.jpg" width="100"  height="100" alt="Pantelis Apostolidis" itemprop="image"></div>
<div class="saboxplugin-authorname"><a href="https://www.cloudcorner.gr/author/admin/" class="vcard author" rel="author"><span class="fn">Pantelis Apostolidis</span></a></div>
<div class="saboxplugin-desc">
<div itemprop="description">
<p>Pantelis Apostolidis is a Sr. Specialist, Azure at Microsoft and a former Microsoft Azure MVP. For the last 20 years, Pantelis has been involved to major cloud projects in Greece and abroad, helping companies to adopt and deploy cloud technologies, driving business value. He is entitled to a lot of Microsoft Expert Certifications, demonstrating his proven experience in delivering high quality solutions. He is an author, blogger and he is acting as a spokesperson for conferences, workshops and webinars. He is also an active member of several communities as a moderator in azureheads.gr and autoexec.gr. Follow him on Twitter @papostolidis.</p>
</div>
</div>
<div class="saboxplugin-web "><a href="https://www.cloudcorner.gr" target="_self" >www.cloudcorner.gr</a></div>
<div class="clearfix"></div>
<div class="saboxplugin-socials "><a title="Facebook" target="_blank" href="https://www.facebook.com/pantelis.apostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-facebook" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 264 512"><path fill="currentColor" d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path></svg></span></a><a title="Linkedin" target="_blank" href="https://www.linkedin.com/in/papostolidis/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-linkedin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path></svg></span></a><a title="Instagram" target="_blank" href="https://www.instagram.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-instagram" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></a><a title="Rss" target="_blank" href="https://wwwcloudcorner.gr/feed/rdf/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-rss" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"></path></svg></span></a><a title="Twitter" target="_blank" href="https://twitter.com/papostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-twitter" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z" /></svg></span></a><a title="Github" target="_blank" href="https://github.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-github" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg></span></a><a title="User email" target="_self" href="mailto:p&#114;&#111;&#120;&#105;ma&#103;&#114;&#064;&#104;&#111;&#116;ma&#105;l&#046;co&#109;" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-user_email" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg></span></a></div>
</div>
</div>
<p><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-monitor-for-vms-health-performance-service-map%2F&amp;linkname=Azure%20Monitor%20for%20VMs%20%E2%80%93%20Health%2C%20Performance%20%26%20Service%20Map" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_print" href="https://www.addtoany.com/add_to/print?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-monitor-for-vms-health-performance-service-map%2F&amp;linkname=Azure%20Monitor%20for%20VMs%20%E2%80%93%20Health%2C%20Performance%20%26%20Service%20Map" title="Print" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-monitor-for-vms-health-performance-service-map%2F&#038;title=Azure%20Monitor%20for%20VMs%20%E2%80%93%20Health%2C%20Performance%20%26%20Service%20Map" data-a2a-url="https://www.cloudcorner.gr/microsoft/azure/azure-monitor-for-vms-health-performance-service-map/" data-a2a-title="Azure Monitor for VMs – Health, Performance &amp; Service Map"><img src="https://static.addtoany.com/buttons/share_save_171_16.png" alt="Share"></a></p><p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/azure-monitor-for-vms-health-performance-service-map/">Azure Monitor for VMs &#8211; Health, Performance &#038; Service Map</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.cloudcorner.gr/microsoft/azure/azure-monitor-for-vms-health-performance-service-map/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Serverless Computing &#124;  Email Report Azure WAF Logs</title>
		<link>https://www.cloudcorner.gr/microsoft/azure/serverless-computing-email-report-azure-waf-logs/</link>
					<comments>https://www.cloudcorner.gr/microsoft/azure/serverless-computing-email-report-azure-waf-logs/#respond</comments>
		
		<dc:creator><![CDATA[Pantelis Apostolidis]]></dc:creator>
		<pubDate>Fri, 28 Dec 2018 13:50:55 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[application gateway]]></category>
		<category><![CDATA[azure]]></category>
		<category><![CDATA[azurerm]]></category>
		<category><![CDATA[log analytics]]></category>
		<category><![CDATA[report]]></category>
		<category><![CDATA[reports]]></category>
		<category><![CDATA[sendgrid]]></category>
		<category><![CDATA[serverless]]></category>
		<category><![CDATA[waf]]></category>
		<category><![CDATA[web application firewall]]></category>
		<guid isPermaLink="false">https://www.e-apostolidis.gr/?p=2349</guid>

					<description><![CDATA[<p>At this post, we will create a Logic App that will query the Log Analytics workspace for the WAF logs</p>
<p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/serverless-computing-email-report-azure-waf-logs/">Serverless Computing |  Email Report Azure WAF Logs</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>At this post, we will create a Logic App that will query the Log Analytics workspace for the WAF logs of the last 24 hours and send the results in an email, using a free SendGrid account.</p>



<p>A Web Application Firewall protects your application from common web vulnerabilities. Azure provides enterprise grade Web Application Firewall through the Application Gateway. You can read more at my previous post: <a href="https://www.e-apostolidis.gr/microsoft/azure/protect-your-web-application-with-azure-application-gateway-waf/">https://www.e-apostolidis.gr/microsoft/azure/protect-your-web-application-with-azure-application-gateway-waf/</a> </p>



<h2 class="wp-block-heading">Use Log Analytics to Query the WAF Logs</h2>



<p>The Application Gateway WAF sends its logs to the Log Analytics workspace. You can see them using a typical query like the below, that will list all events at the past 24 hours.</p>


<p>AzureDiagnostics | where Resource == &#8220;PROWAF&#8221; and OperationName == &#8220;ApplicationGatewayFirewall&#8221; | where TimeGenerated > ago(24h) | summarize count() by TimeGenerated, clientIp_s , TimeGenerated , ruleId_s , Message , details_message_s , requestUri_s, details_file_s , hostname_s</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="1024" height="439" src="https://www.e-apostolidis.gr/wp-content/uploads/2018/12/image-23-1024x439.png" alt="waflogicappreports" class="wp-image-2367" srcset="https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-23-1024x439.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-23-300x129.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-23-768x330.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-23-600x258.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-23.png 1398w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p>You can save the query by clicking the Save button and give it a name and a Category.</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="493" height="224" src="https://www.e-apostolidis.gr/wp-content/uploads/2018/12/image-17.png" alt="waflogicappreports" class="wp-image-2360" srcset="https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-17.png 493w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-17-300x136.png 300w" sizes="auto, (max-width: 493px) 100vw, 493px" /></figure>



<p>We can send those logs as email by using an Azure Logic App and a SendGrid account. You can see how to create a SendGrid free account at my previous post: <a href="https://www.e-apostolidis.gr/microsoft/azure/azure-free-smtp-relay-using-sendgrid/">https://www.e-apostolidis.gr/microsoft/azure/azure-free-smtp-relay-using-sendgrid/</a></p>



<h2 class="wp-block-heading">Create a Logic App</h2>



<p>From the portal.azure.com, Create a resource and write &#8220;logic app&#8221;, click the &#8220;Logic App&#8221;and press &#8220;Create&#8221;</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="511" height="304" src="https://www.e-apostolidis.gr/wp-content/uploads/2018/12/image-10.png" alt="waflogicappreports" class="wp-image-2351" srcset="https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-10.png 511w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-10-300x178.png 300w" sizes="auto, (max-width: 511px) 100vw, 511px" /><figcaption><br></figcaption></figure>



<p>At the Logic App creation wizard add Name, subscription, resource group, location and press Create</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="462" height="416" src="https://www.e-apostolidis.gr/wp-content/uploads/2018/12/image-11.png" alt="waflogicappreports" class="wp-image-2352" srcset="https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-11.png 462w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-11-300x270.png 300w" sizes="auto, (max-width: 462px) 100vw, 462px" /><figcaption><br></figcaption></figure>



<p>Next the Logic App will be created. Open it and from the Logics App Designer select the &#8220;Recurrence&#8221; common trigger.</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="622" height="264" src="https://www.e-apostolidis.gr/wp-content/uploads/2018/12/image-12.png" alt="waflogicappreports" class="wp-image-2354" srcset="https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-12.png 622w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-12-300x127.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-12-600x255.png 600w" sizes="auto, (max-width: 622px) 100vw, 622px" /></figure>



<p>Change the Recurrence Interval to &#8220;1&#8221; and the Frequency to &#8220;Day&#8221; and press the &#8220;+ New step&#8221;</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="621" height="227" src="https://www.e-apostolidis.gr/wp-content/uploads/2018/12/image-14.png" alt="waflogicappreports" class="wp-image-2357" srcset="https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-14.png 621w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-14-300x110.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-14-600x219.png 600w" sizes="auto, (max-width: 621px) 100vw, 621px" /></figure>



<p>search for &#8220;log analytics&#8221; and select the &#8220;Run query and visualize results&#8221;</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="585" height="500" src="https://www.e-apostolidis.gr/wp-content/uploads/2018/12/image-24.png" alt="waflogicappreports" class="wp-image-2368" srcset="https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-24.png 585w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-24-300x256.png 300w" sizes="auto, (max-width: 585px) 100vw, 585px" /></figure>



<p>I will proceed with &#8220;Sign in&#8221;, you can also use a Service Principal but we will cover this to another post.</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="627" height="264" src="https://www.e-apostolidis.gr/wp-content/uploads/2018/12/image-16.png" alt="waflogicappreports" class="wp-image-2359" srcset="https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-16.png 627w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-16-300x126.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-16-600x253.png 600w" sizes="auto, (max-width: 627px) 100vw, 627px" /></figure>



<p>After you login select the Subscription, Resource Group and the Log Analytics Workspace. Next, add the query, for Chart Type select &#8220;Html Table&#8221; and add a &#8220;Next Step&#8221;</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="602" height="335" src="https://www.e-apostolidis.gr/wp-content/uploads/2018/12/image-26.png" alt="waflogicappreports" class="wp-image-2370" srcset="https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-26.png 602w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-26-300x167.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-26-600x334.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-26-360x200.png 360w" sizes="auto, (max-width: 602px) 100vw, 602px" /></figure>



<p></p>



<p>search for &#8220;sendgrid&#8221; and select the &#8220;Send email (V2)&#8221;</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="581" height="577" src="https://www.e-apostolidis.gr/wp-content/uploads/2018/12/image-19.png" alt="waflogicappreports" class="wp-image-2363" srcset="https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-19.png 581w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-19-150x150.png 150w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-19-300x298.png 300w" sizes="auto, (max-width: 581px) 100vw, 581px" /></figure>



<p>Add a name for the connection and the API key that you created at the SendGrid creation post and press create.  <a href="https://www.e-apostolidis.gr/microsoft/azure/azure-free-smtp-relay-using-sendgrid/">https://www.e-apostolidis.gr/microsoft/azure/azure-free-smtp-relay-using-sendgrid/</a></p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="612" height="211" src="https://www.e-apostolidis.gr/wp-content/uploads/2018/12/image-20.png" alt="waflogicappreports" class="wp-image-2364" srcset="https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-20.png 612w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-20-300x103.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-20-600x207.png 600w" sizes="auto, (max-width: 612px) 100vw, 612px" /></figure>



<p>Fill the From address, To address and Subject. At the email body, add dynamic content and select the blocs of the previous set result.</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="844" height="365" src="https://www.e-apostolidis.gr/wp-content/uploads/2018/12/image-25.png" alt="waflogicappreports" class="wp-image-2369" srcset="https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-25.png 844w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-25-300x130.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-25-768x332.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-25-600x259.png 600w" sizes="auto, (max-width: 844px) 100vw, 844px" /></figure>



<p>Press Save to save the Flow and Run to test it.</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="525" height="119" src="https://www.e-apostolidis.gr/wp-content/uploads/2018/12/image-22.png" alt="waflogicappreports" class="wp-image-2366" srcset="https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-22.png 525w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-22-300x68.png 300w" sizes="auto, (max-width: 525px) 100vw, 525px" /></figure>



<p>The result at my email:</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="885" height="348" src="https://www.e-apostolidis.gr/wp-content/uploads/2018/12/image-27.png" alt="waflogicappreports" class="wp-image-2372" srcset="https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-27.png 885w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-27-300x118.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-27-768x302.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2018/12/image-27-600x236.png 600w" sizes="auto, (max-width: 885px) 100vw, 885px" /></figure>



<p></p>



<p></p>



<p></p>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author"><div class="saboxplugin-tab"><div class="saboxplugin-gravatar"><img loading="lazy" decoding="async" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/05/mvpsummit2019.jpg" width="100"  height="100" alt="Pantelis Apostolidis" itemprop="image"></div><div class="saboxplugin-authorname"><a href="https://www.cloudcorner.gr/author/admin/" class="vcard author" rel="author"><span class="fn">Pantelis Apostolidis</span></a></div><div class="saboxplugin-desc"><div itemprop="description"><p>Pantelis Apostolidis is a Sr. Specialist, Azure at Microsoft and a former Microsoft Azure MVP. For the last 20 years, Pantelis has been involved to major cloud projects in Greece and abroad, helping companies to adopt and deploy cloud technologies, driving business value. He is entitled to a lot of Microsoft Expert Certifications, demonstrating his proven experience in delivering high quality solutions. He is an author, blogger and he is acting as a spokesperson for conferences, workshops and webinars. He is also an active member of several communities as a moderator in azureheads.gr and autoexec.gr. Follow him on Twitter @papostolidis.</p>
</div></div><div class="saboxplugin-web "><a href="https://www.cloudcorner.gr" target="_self" >www.cloudcorner.gr</a></div><div class="clearfix"></div><div class="saboxplugin-socials "><a title="Facebook" target="_blank" href="https://www.facebook.com/pantelis.apostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-facebook" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 264 512"><path fill="currentColor" d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path></svg></span></a><a title="Linkedin" target="_blank" href="https://www.linkedin.com/in/papostolidis/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-linkedin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path></svg></span></a><a title="Instagram" target="_blank" href="https://www.instagram.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-instagram" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></a><a title="Rss" target="_blank" href="https://wwwcloudcorner.gr/feed/rdf/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-rss" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"></path></svg></span></a><a title="Twitter" target="_blank" href="https://twitter.com/papostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-twitter" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z" /></svg></span></a><a title="Github" target="_blank" href="https://github.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-github" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg></span></a><a title="User email" target="_self" href="mailto:pro&#120;i&#109;&#097;&#103;r&#064;ho&#116;ma&#105;&#108;.&#099;&#111;m" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-user_email" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg></span></a></div></div></div><p><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fserverless-computing-email-report-azure-waf-logs%2F&amp;linkname=Serverless%20Computing%20%7C%20%20Email%20Report%20Azure%20WAF%20Logs" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_print" href="https://www.addtoany.com/add_to/print?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fserverless-computing-email-report-azure-waf-logs%2F&amp;linkname=Serverless%20Computing%20%7C%20%20Email%20Report%20Azure%20WAF%20Logs" title="Print" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fserverless-computing-email-report-azure-waf-logs%2F&#038;title=Serverless%20Computing%20%7C%20%20Email%20Report%20Azure%20WAF%20Logs" data-a2a-url="https://www.cloudcorner.gr/microsoft/azure/serverless-computing-email-report-azure-waf-logs/" data-a2a-title="Serverless Computing |  Email Report Azure WAF Logs"><img src="https://static.addtoany.com/buttons/share_save_171_16.png" alt="Share"></a></p><p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/serverless-computing-email-report-azure-waf-logs/">Serverless Computing |  Email Report Azure WAF Logs</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.cloudcorner.gr/microsoft/azure/serverless-computing-email-report-azure-waf-logs/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Azure Backup Reports</title>
		<link>https://www.cloudcorner.gr/microsoft/azure/azure-backup-reports/</link>
					<comments>https://www.cloudcorner.gr/microsoft/azure/azure-backup-reports/#respond</comments>
		
		<dc:creator><![CDATA[Pantelis Apostolidis]]></dc:creator>
		<pubDate>Wed, 28 Jun 2017 21:07:57 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[azure]]></category>
		<category><![CDATA[azure backup]]></category>
		<category><![CDATA[azurerm]]></category>
		<category><![CDATA[backup reports]]></category>
		<category><![CDATA[log analytics]]></category>
		<category><![CDATA[oms]]></category>
		<category><![CDATA[power bi]]></category>
		<category><![CDATA[storage account]]></category>
		<guid isPermaLink="false">http://www.e-apostolidis.gr/?p=1329</guid>

					<description><![CDATA[<p>Azure Backup Reports A new feature is in public preview, the Azure Backup Reports. Now we can have the Azure</p>
<p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/azure-backup-reports/">Azure Backup Reports</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1 style="text-align: justify;">Azure Backup Reports</h1>
<p style="text-align: justify;">A new feature is in public preview, the Azure Backup Reports. Now we can have the Azure Backup Reports at the OMS Workspace, Event Hub and Power Bi. You can use Power BI to view report dashboard, download reports and create custom reports</p>
<p style="text-align: justify;">The configuration has two steps, one to configure the Azure Backup Reports connection with each service and the other is to get the data at each service.</p>
<p style="text-align: justify;">First go to a Recovery Services vault and select Backup Reports. Next press the Configure button.</p>
<p id="OZGlKqC" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-1331 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_5953928e507c7.png" alt="Azure Backup Reports" width="596" height="503" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953928e507c7.png 596w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953928e507c7-300x253.png 300w" sizes="auto, (max-width: 596px) 100vw, 596px" /></p>
<p style="text-align: justify;">The Diagnostic settings blade will open. Change the Status to &#8220;On&#8221; and select the desired services to collect the Azure Backup Logs.</p>
<p id="EmpTpGR" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-1332 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_595392c3f421b.png" alt="Azure Backup Reports" width="587" height="505" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595392c3f421b.png 587w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595392c3f421b-300x258.png 300w" sizes="auto, (max-width: 587px) 100vw, 587px" /></p>
<p style="text-align: justify;">For the Power Bi integration we need a Storage account. So check the &#8220;Archive to storage account&#8221; option and select a storage account. The storage account must be at the same region as the Azure Backup account.</p>
<p id="xWzAIDY" style="text-align: justify;"><img loading="lazy" decoding="async" class="  alignnone wp-image-1333" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_595392f4c7016.png" alt="Azure Backup Reports" width="806" height="164" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595392f4c7016.png 1169w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595392f4c7016-300x61.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595392f4c7016-768x156.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595392f4c7016-1024x208.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595392f4c7016-600x122.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595392f4c7016-660x134.png 660w" sizes="auto, (max-width: 806px) 100vw, 806px" /></p>
<p style="text-align: justify;">To integrate with OMS check the &#8220;Send to Log Analytics&#8221; option and select an OMS Workspace.</p>
<p id="oWpunSN" style="text-align: justify;"><img loading="lazy" decoding="async" class="  alignnone wp-image-1334" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_5953932fdbad0.png" alt="Azure Backup Reports" width="809" height="470" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953932fdbad0.png 886w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953932fdbad0-300x174.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953932fdbad0-768x446.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953932fdbad0-600x349.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953932fdbad0-660x384.png 660w" sizes="auto, (max-width: 809px) 100vw, 809px" /></p>
<p style="text-align: justify;">An other option is to stream the Azure Backup logs to event hub. To configure it check the &#8220;Stream to an event hub&#8221; and select the event hub namespace and policy name.</p>
<p id="RSrSVIX" style="text-align: justify;"><img loading="lazy" decoding="async" class="  alignnone wp-image-1335" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_5953935da7325.png" alt="Azure Backup Reports" width="801" height="314" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953935da7325.png 1161w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953935da7325-300x118.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953935da7325-768x301.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953935da7325-1024x401.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953935da7325-600x235.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953935da7325-660x259.png 660w" sizes="auto, (max-width: 801px) 100vw, 801px" /></p>
<p>At the bottom part of the configuration blade select the Logs that you want to get. The retention days option is only for the Storage Account configuration.</p>
<p id="WQwJhbi" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-1336 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_59539393cac50.png" alt="Azure Backup Reports" width="553" height="222" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59539393cac50.png 553w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59539393cac50-300x120.png 300w" sizes="auto, (max-width: 553px) 100vw, 553px" /></p>
<p style="text-align: justify;">Press save and return to the Backup reports blade. Now press the &#8220;Sign in&#8221; to connect to Power Bi to configure the Service.</p>
<p id="fuyzIWk" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-1337 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_595393c16893d.png" alt="Azure Backup Reports" width="279" height="175" /></p>
<p style="text-align: justify;">At the lower left corner of the Power Bi Portal press &#8220;Get Data&#8221;</p>
<p id="SrSJpCX" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-1339 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_59539446da089.png" alt="Azure Backup Reports" width="187" height="56" /></p>
<p style="text-align: justify;">At the AppSource press the &#8220;Get&#8221; button under the Services.</p>
<p id="gtGcodp" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-1340 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_5953945fec8b3.png" alt="Azure Backup Reports" width="440" height="306" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953945fec8b3.png 440w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953945fec8b3-300x209.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953945fec8b3-200x140.png 200w" sizes="auto, (max-width: 440px) 100vw, 440px" /></p>
<p style="text-align: justify;">Search and select the &#8220;Azure Backup&#8221;</p>
<p id="kwHicvn" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-1341 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_59539486615e4.png" alt="Azure Backup Reports" width="385" height="459" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59539486615e4.png 385w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59539486615e4-252x300.png 252w" sizes="auto, (max-width: 385px) 100vw, 385px" /></p>
<p style="text-align: justify;">At the connect to Azure Backup page enter the Storage Account name. This is the storage account that we selected at the Azure Backup Reports configuration.</p>
<p id="KSFfoSi" style="text-align: justify;"><img loading="lazy" decoding="async" class="alignnone wp-image-1342 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_595394bf82228.png" alt="Azure Backup Reports" width="569" height="503" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595394bf82228.png 569w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595394bf82228-300x265.png 300w" sizes="auto, (max-width: 569px) 100vw, 569px" /></p>
<p style="text-align: justify;">Press next and Save. Now the Azure Backup workspace is ready. Be patient, it needs time to start reporting data.</p>
<p id="YwoskgJ" style="text-align: justify;"><img loading="lazy" decoding="async" class="  alignnone wp-image-1343" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_59539562612ae.png" alt="Azure Backup Reports" width="808" height="58" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59539562612ae.png 1424w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59539562612ae-300x21.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59539562612ae-768x55.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59539562612ae-1024x73.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59539562612ae-600x43.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59539562612ae-660x47.png 660w" sizes="auto, (max-width: 808px) 100vw, 808px" /></p>
<p style="text-align: justify;">If you go back to the Azure Portal, the Backup Reports blade has changed and it only has the option to connect to your Power Bi dashboard.</p>
<p id="LjjHAnh" style="text-align: justify;"><img loading="lazy" decoding="async" class="  alignnone wp-image-1344" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_5953962a3ab7f.png" alt="Azure Backup Reports" width="453" height="571" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953962a3ab7f.png 571w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953962a3ab7f-238x300.png 238w" sizes="auto, (max-width: 453px) 100vw, 453px" /></p>
<p>If you browse to your Power Bi dashboard, you can view the Azure Backup Reports Workspace as the below image.</p>
<p id="DuBpddT" style="text-align: justify;"><img loading="lazy" decoding="async" class="  alignnone wp-image-1346" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_5953afa45f7eb.png" alt="Azure Backup Reports" width="804" height="586" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953afa45f7eb.png 1333w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953afa45f7eb-300x219.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953afa45f7eb-768x559.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953afa45f7eb-1024x746.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953afa45f7eb-600x437.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953afa45f7eb-660x481.png 660w" sizes="auto, (max-width: 804px) 100vw, 804px" /></p>
<p style="text-align: justify;">For the OMS integration, you only need to go to the Log Search and query &#8220;Category=&#8221;AzureBackupReport&#8221; and you will have all the Azure Backup Report logs. Following the OMS logic you can create a custom View, you can follow this post: <a href="http://www.e-apostolidis.gr/microsoft/azure-log-analytics-cpu-performance-monitor/" target="_blank" rel="noopener">Azure Log Analytics</a></p>
<p id="ylMKuve"><img loading="lazy" decoding="async" class="  alignnone wp-image-1345" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_5953adac7be64.png" alt="Azure Backup Reports" width="801" height="615" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953adac7be64.png 1042w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953adac7be64-300x230.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953adac7be64-768x590.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953adac7be64-1024x786.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953adac7be64-600x461.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5953adac7be64-660x507.png 660w" sizes="auto, (max-width: 801px) 100vw, 801px" /></p>
<p>&nbsp;</p>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author">
<div class="saboxplugin-tab">
<div class="saboxplugin-gravatar"><img loading="lazy" decoding="async" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/05/mvpsummit2019.jpg" width="100"  height="100" alt="Pantelis Apostolidis" itemprop="image"></div>
<div class="saboxplugin-authorname"><a href="https://www.cloudcorner.gr/author/admin/" class="vcard author" rel="author"><span class="fn">Pantelis Apostolidis</span></a></div>
<div class="saboxplugin-desc">
<div itemprop="description">
<p>Pantelis Apostolidis is a Sr. Specialist, Azure at Microsoft and a former Microsoft Azure MVP. For the last 20 years, Pantelis has been involved to major cloud projects in Greece and abroad, helping companies to adopt and deploy cloud technologies, driving business value. He is entitled to a lot of Microsoft Expert Certifications, demonstrating his proven experience in delivering high quality solutions. He is an author, blogger and he is acting as a spokesperson for conferences, workshops and webinars. He is also an active member of several communities as a moderator in azureheads.gr and autoexec.gr. Follow him on Twitter @papostolidis.</p>
</div>
</div>
<div class="saboxplugin-web "><a href="https://www.cloudcorner.gr" target="_self" >www.cloudcorner.gr</a></div>
<div class="clearfix"></div>
<div class="saboxplugin-socials "><a title="Facebook" target="_blank" href="https://www.facebook.com/pantelis.apostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-facebook" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 264 512"><path fill="currentColor" d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path></svg></span></a><a title="Linkedin" target="_blank" href="https://www.linkedin.com/in/papostolidis/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-linkedin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path></svg></span></a><a title="Instagram" target="_blank" href="https://www.instagram.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-instagram" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></a><a title="Rss" target="_blank" href="https://wwwcloudcorner.gr/feed/rdf/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-rss" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"></path></svg></span></a><a title="Twitter" target="_blank" href="https://twitter.com/papostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-twitter" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z" /></svg></span></a><a title="Github" target="_blank" href="https://github.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-github" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg></span></a><a title="User email" target="_self" href="mailto:p&#114;oxima&#103;r&#064;&#104;&#111;tma&#105;&#108;.&#099;om" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-user_email" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg></span></a></div>
</div>
</div>
<p><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-backup-reports%2F&amp;linkname=Azure%20Backup%20Reports" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_print" href="https://www.addtoany.com/add_to/print?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-backup-reports%2F&amp;linkname=Azure%20Backup%20Reports" title="Print" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-backup-reports%2F&#038;title=Azure%20Backup%20Reports" data-a2a-url="https://www.cloudcorner.gr/microsoft/azure/azure-backup-reports/" data-a2a-title="Azure Backup Reports"><img src="https://static.addtoany.com/buttons/share_save_171_16.png" alt="Share"></a></p><p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/azure-backup-reports/">Azure Backup Reports</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.cloudcorner.gr/microsoft/azure/azure-backup-reports/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Azure Log Analytics &#124; CPU Performance Monitor</title>
		<link>https://www.cloudcorner.gr/microsoft/azure/azure-log-analytics-cpu-performance-monitor/</link>
					<comments>https://www.cloudcorner.gr/microsoft/azure/azure-log-analytics-cpu-performance-monitor/#respond</comments>
		
		<dc:creator><![CDATA[Pantelis Apostolidis]]></dc:creator>
		<pubDate>Mon, 26 Jun 2017 20:50:07 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[azurerm]]></category>
		<category><![CDATA[log analytics]]></category>
		<category><![CDATA[oms]]></category>
		<category><![CDATA[performance monitor]]></category>
		<guid isPermaLink="false">http://www.e-apostolidis.gr/?p=1308</guid>

					<description><![CDATA[<p>Azure Log Analytics &#124; CPU Performance Monitor In this article we will create a CPU Performance monitor View for our</p>
<p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/azure-log-analytics-cpu-performance-monitor/">Azure Log Analytics | CPU Performance Monitor</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1>Azure Log Analytics | CPU Performance Monitor</h1>
<p>In this article we will create a CPU Performance monitor View for our servers at the Azure Log Analytics (OMS) Portal.</p>
<p id="YIOVkis"><img loading="lazy" decoding="async" class="alignnone wp-image-1310 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_59516c5d695bd.png" alt="OMS Portal" width="436" height="201" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59516c5d695bd.png 436w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59516c5d695bd-300x138.png 300w" sizes="auto, (max-width: 436px) 100vw, 436px" /></p>
<p>At the Microsoft Operations Management Suite (OMS) portal press the + button to create a new View</p>
<p id="LhdpIpQ"><img loading="lazy" decoding="async" class="alignnone wp-image-1309 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_59516b7282514.png" alt="Add Custom View" width="351" height="133" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59516b7282514.png 351w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59516b7282514-300x114.png 300w" sizes="auto, (max-width: 351px) 100vw, 351px" /></p>
<p>The View Designer workspace will open. Select the &#8220;Line chart &amp; callout&#8221;</p>
<p id="bgLUzEK"><img loading="lazy" decoding="async" class="alignnone wp-image-1312" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_59516ce1844a4.png" alt="Line chard &amp; callout" width="505" height="339" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59516ce1844a4.png 591w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59516ce1844a4-300x202.png 300w" sizes="auto, (max-width: 505px) 100vw, 505px" /></p>
<p>At the Properties blade enter a Name, something like &#8220;CPU Performance Monitor&#8221;, add the below query and press Apply</p>
<p><code>Type:Perf CounterName="% Processor Time" InstanceName="_Total" | measure avg(CounterValue) by Computer Interval 10Minutes</code></p>
<p id="eQFJhAB"><img loading="lazy" decoding="async" class="alignnone wp-image-1313 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_59516d20f0a98.png" alt="Properties" width="341" height="355" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59516d20f0a98.png 341w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59516d20f0a98-288x300.png 288w" sizes="auto, (max-width: 341px) 100vw, 341px" /></p>
<p>Pressing Apply you will see at the Preview window the &#8220;Name&#8221; and the CPU Performance of all the Windows servers that are monitored by OMS agent.</p>
<p id="AAvzNSU"><img loading="lazy" decoding="async" class="alignnone wp-image-1314" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_59516dd2e769e.png" alt="CPU Performance Monitor" width="587" height="281" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59516dd2e769e.png 604w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59516dd2e769e-300x144.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59516dd2e769e-600x287.png 600w" sizes="auto, (max-width: 587px) 100vw, 587px" /></p>
<p>The next step is to press the &#8220;+ View&#8221; tab and add a &#8220;Stack of line charts</p>
<p id="ODFXyoY"><img loading="lazy" decoding="async" class="alignnone wp-image-1316 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_59516e888fd73.png" alt="add View" width="223" height="635" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59516e888fd73.png 223w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59516e888fd73-105x300.png 105w" sizes="auto, (max-width: 223px) 100vw, 223px" /></p>
<p>The &#8220;Stack of line charts&#8221; will add three charts per row and we can use it to add our servers. We will create something like that:</p>
<p id="KvyRjRK"><img loading="lazy" decoding="async" class="alignnone wp-image-1318 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_59517007d64e4.png" alt="CPU Performance monitor" width="508" height="535" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59517007d64e4.png 508w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_59517007d64e4-285x300.png 285w" sizes="auto, (max-width: 508px) 100vw, 508px" /></p>
<p>So, at the Properties blade add a name and a query for each server needs to be monitored and press Apply. For more than three servers add more &#8220;Stack of line charts&#8221;.</p>
<p>The query is the below, just change the Computer = &#8220;server.domain.local&#8221; with your servers.</p>
<p><code>Type:Perf CounterName="% Processor Time" InstanceName="_Total" AND Computer = "server.domain.local" | measure Avg(CounterValue) as 'CPU_Percentage' by Computer Interval 10Minutes</code></p>
<p id="atvhQLd"><img loading="lazy" decoding="async" class="alignnone wp-image-1319 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_5951703d83d36.png" alt="Properties" width="339" height="831" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5951703d83d36.png 339w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_5951703d83d36-122x300.png 122w" sizes="auto, (max-width: 339px) 100vw, 339px" /></p>
<p>Finally press &#8220;Save&#8221; at the View Designer</p>
<p id="HvWmEHR"><img loading="lazy" decoding="async" class="alignnone wp-image-1320 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_59517087c3dce.png" alt="Save" width="255" height="102" /></p>
<p>The result is a CPU Performance monitor for all servers at the OMS Portal.</p>
<p id="NgkfEKg"><img loading="lazy" decoding="async" class="alignnone wp-image-1322 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_595170f7e8a8a.png" alt="CPU Performance Monitor" width="352" height="200" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595170f7e8a8a.png 352w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595170f7e8a8a-300x170.png 300w" sizes="auto, (max-width: 352px) 100vw, 352px" /></p>
<p>And when you press it you have the CPU Performance Monitor of all added servers.</p>
<p id="fhEsbKE"><img loading="lazy" decoding="async" class="alignnone wp-image-1323 size-full" src="http://www.e-apostolidis.gr/wp-content/uploads/2017/06/img_595171faee1ac.png" alt="Custom View" width="1069" height="690" srcset="https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595171faee1ac.png 1069w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595171faee1ac-300x194.png 300w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595171faee1ac-768x496.png 768w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595171faee1ac-1024x661.png 1024w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595171faee1ac-600x387.png 600w, https://www.cloudcorner.gr/wp-content/uploads/2017/06/img_595171faee1ac-660x426.png 660w" sizes="auto, (max-width: 1069px) 100vw, 1069px" /></p>
<p>&nbsp;</p>
<p>Stay tuned for the next part</p>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author">
<div class="saboxplugin-tab">
<div class="saboxplugin-gravatar"><img loading="lazy" decoding="async" src="https://www.e-apostolidis.gr/wp-content/uploads/2019/05/mvpsummit2019.jpg" width="100"  height="100" alt="Pantelis Apostolidis" itemprop="image"></div>
<div class="saboxplugin-authorname"><a href="https://www.cloudcorner.gr/author/admin/" class="vcard author" rel="author"><span class="fn">Pantelis Apostolidis</span></a></div>
<div class="saboxplugin-desc">
<div itemprop="description">
<p>Pantelis Apostolidis is a Sr. Specialist, Azure at Microsoft and a former Microsoft Azure MVP. For the last 20 years, Pantelis has been involved to major cloud projects in Greece and abroad, helping companies to adopt and deploy cloud technologies, driving business value. He is entitled to a lot of Microsoft Expert Certifications, demonstrating his proven experience in delivering high quality solutions. He is an author, blogger and he is acting as a spokesperson for conferences, workshops and webinars. He is also an active member of several communities as a moderator in azureheads.gr and autoexec.gr. Follow him on Twitter @papostolidis.</p>
</div>
</div>
<div class="saboxplugin-web "><a href="https://www.cloudcorner.gr" target="_self" >www.cloudcorner.gr</a></div>
<div class="clearfix"></div>
<div class="saboxplugin-socials "><a title="Facebook" target="_blank" href="https://www.facebook.com/pantelis.apostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-facebook" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 264 512"><path fill="currentColor" d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path></svg></span></a><a title="Linkedin" target="_blank" href="https://www.linkedin.com/in/papostolidis/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-linkedin" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path></svg></span></a><a title="Instagram" target="_blank" href="https://www.instagram.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-instagram" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg></span></a><a title="Rss" target="_blank" href="https://wwwcloudcorner.gr/feed/rdf/" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-rss" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"></path></svg></span></a><a title="Twitter" target="_blank" href="https://twitter.com/papostolidis" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-twitter" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z" /></svg></span></a><a title="Github" target="_blank" href="https://github.com/proximagr" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-github" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg></span></a><a title="User email" target="_self" href="mailto:p&#114;oximagr&#064;h&#111;&#116;&#109;&#097;&#105;l.&#099;&#111;m" rel="nofollow noopener" class="saboxplugin-icon-grey"><svg aria-hidden="true" class="sab-user_email" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg></span></a></div>
</div>
</div>
<p><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-log-analytics-cpu-performance-monitor%2F&amp;linkname=Azure%20Log%20Analytics%20%7C%20CPU%20Performance%20Monitor" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_print" href="https://www.addtoany.com/add_to/print?linkurl=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-log-analytics-cpu-performance-monitor%2F&amp;linkname=Azure%20Log%20Analytics%20%7C%20CPU%20Performance%20Monitor" title="Print" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.cloudcorner.gr%2Fmicrosoft%2Fazure%2Fazure-log-analytics-cpu-performance-monitor%2F&#038;title=Azure%20Log%20Analytics%20%7C%20CPU%20Performance%20Monitor" data-a2a-url="https://www.cloudcorner.gr/microsoft/azure/azure-log-analytics-cpu-performance-monitor/" data-a2a-title="Azure Log Analytics | CPU Performance Monitor"><img src="https://static.addtoany.com/buttons/share_save_171_16.png" alt="Share"></a></p><p>The post <a href="https://www.cloudcorner.gr/microsoft/azure/azure-log-analytics-cpu-performance-monitor/">Azure Log Analytics | CPU Performance Monitor</a> appeared first on <a href="https://www.cloudcorner.gr">Apostolidis Cloud Corner</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.cloudcorner.gr/microsoft/azure/azure-log-analytics-cpu-performance-monitor/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
