Who is using my ExpressRoute bandwidth? (VNet Flow logs demo, queries and dashboards)

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ต.ค. 2024

ความคิดเห็น • 6

  • @Mikenyil1
    @Mikenyil1 5 หลายเดือนก่อน +1

    Brilliant video. Will give this a try.

  • @MrKevSm1th
    @MrKevSm1th 4 หลายเดือนก่อน

    Another great video! Thanks Adam.

  • @bash-shell
    @bash-shell 5 หลายเดือนก่อน +1

    Such great content. thank you

  • @AdamStuart1
    @AdamStuart1  5 หลายเดือนก่อน

    Quick addendum here. At 16:10 I talk about using the Flow Log Resource ID (TargetResourceID in the table schema) to pull out the VNet information. I also call out that we do not have SrcVNet and DestVNet in the same schema. This is true, but there is another way to get this VNet data. It still relies on having Flow Logs enabled on all spokes. In the fields SrcSubnet and DestSubnet we expose the VNet as part of the output. You can parse that out and summarise based on it. Example below:
    NTANetAnalytics
    | where SubType == 'FlowLog' and FaSchemaVersion == '3' and FlowStartTime > ago(12d)
    | extend DestVNet = tostring(split(DestSubnet, "/")[1])
    | summarize TotalBytes=sum(BytesSrcToDest) by DestVNet
    This will give you traffic volume based on the VNet level rather than Subnet level.

    • @sreesree.b
      @sreesree.b หลายเดือนก่อน

      Excellent video, can you show how we can build Dashboard for express route traffic collector?

    • @AdamStuart1
      @AdamStuart1  หลายเดือนก่อน

      @@sreesree.b I have no plans to do this, the logic is very similar.