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

Поділитися
Вставка
  • Опубліковано 16 січ 2025

КОМЕНТАРІ • 6

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

    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 4 місяці тому

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

    • @AdamStuart1
      @AdamStuart1  4 місяці тому

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

  • @Mikenyil1
    @Mikenyil1 8 місяців тому +1

    Brilliant video. Will give this a try.

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

    Another great video! Thanks Adam.

  • @bash-shell
    @bash-shell 8 місяців тому +1

    Such great content. thank you