Alerting - CPU Memory and Disk Usage Email Alerts in Azure

Поділитися
Вставка
  • Опубліковано 16 жов 2024
  • My Channel - Tech Knowledge - Tushar's Vlog
    / @techknowledge-tushars...
    CPU Memory and Disk Monitoring in Azure
    • CPU Memory and Disk Mo...
    Monitoring
    CPU Usage - This is by default enabled for every new VM
    Memory Usage - this needs to be enabled from Diagnostics center
    Disk Space- you need to enable Insights.
    Performance Counters
    Processor(_Total)\% Processor Time
    Memory(*)\% Committed Bytes In Use
    LogicalDisk(*)\% Free Space
    Memory/Disk Usage Query
    UA-cam does not allow angular bracket in Description, So i am unable to paste the scripts here.
    Leave a comment and ill revert back yo you.

КОМЕНТАРІ • 13

  • @techknowledge-tusharsvlog
    @techknowledge-tusharsvlog  2 роки тому +2

    Memory Usage Query
    Perf
    | where CounterName == "% Committed Bytes In Use"
    | where TimeGenerated > ago(15m)
    | where Computer == "TK-vm1"
    | summarize avg = avg(CounterValue) by Computer
    | where avg > 90
    Disk Space Query
    Perf
    | where ObjectName == "LogicalDisk" and CounterName == "% Free Space"
    | summarize FreeSpace = min(CounterValue) by Computer, InstanceName
    | where strlen(InstanceName) == 2 and InstanceName contains ":"
    | where FreeSpace < 95
    | sort by FreeSpace asc
    | render barchart kind=unstacked

  • @kundanmishra4780
    @kundanmishra4780 Рік тому

    Great

  • @poojarashmi1400
    @poojarashmi1400 2 роки тому

    Even after followed each step I am not getting any email related to disk space.
    I need your help exactly followed steps that you mentioned in the video

    • @rehanraza6302
      @rehanraza6302 8 місяців тому

      Was it resolved?? How did you manage then?

  • @hemanthkh
    @hemanthkh 2 роки тому

    how to check the traffic in VM

  • @poojarashmi1400
    @poojarashmi1400 2 роки тому

    Can you paste the disk space query here

  • @apitest5727
    @apitest5727 2 роки тому +1

    need scripts

  • @listeve
    @listeve Рік тому +1

    Can you send me a copy of the Disk Usage Query?

    • @techknowledge-tusharsvlog
      @techknowledge-tusharsvlog  Рік тому

      the first comment on this video is form me, that has the query.

    • @listeve
      @listeve Рік тому

      @@techknowledge-tusharsvlogI got it. Thanks. I am getting this message:
      No results found from the specified time range
      Try selecting another time range
      What am I missing? I do have "Insights" enabled on my VM.

  • @krishnavasu827
    @krishnavasu827 7 місяців тому

    Share your mobile number for teaching azure sir

    • @techknowledge-tusharsvlog
      @techknowledge-tusharsvlog  7 місяців тому

      thanks for considering me for tutor.
      there are plenty of tutorial on you tube.
      if you are interested in paid training. you can try scott Duffy / Allan Rodrgues courses on udemy. initially even i learnt from their videos