Could you please tell me how these are related to a particular NSG? How is this generated and how this can be queried for? Under what conditions can this be different?
⚠Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
@blueelvis The SystemID is the ID of a NSG. This is not the easiest thing to obtain, I was able to find it by going to Resources.Azure.com and navigating to the NSG. Under "Properties" -> "ResourceGUID" was the SystemID
In Powershell, the Resource GUID can be obtained by getting a NSG and selecting the "ResourceGUID" property.
Get-AzureRmNetworkSecurityGroup -name "NSG Name" -ResourceGroupName "RG Name" | select ResourceGUID
The GUID is generated by Azure when you create a NSG. It is not something that you can control. The only reason that this would be different is if the log is coming from a different NSG.
@TravisCragg-MSFT - Thanks for that information! If we already have a Resource ID in the NSG Log, why do we have the systemID as well in the log entry?
@blueelvis I am unsure, but it is likely that this is how it is recorded, and they give all available information in these records.
@blueelvis We will now proceed to close this thread. If there are further questions regarding this matter, please tag me in your reply. We will gladly continue the discussion and we will reopen the issue.
@TravisCragg-MSFT -- Thanks a lot for the explanation!