Kusto 中的 IPv4 前缀表示法范围
IPv4-prefix notation range in Kusto
如何忽略名称为 Test1 且具有 10.X.X.X IP 的所有结果?我仍然需要结果中的 Test2 和 Test8。
我试过了
| where Name == "Test1" or ipv4_is_in_range(IPAddress, "10.0.0.0/8") == false
我也试过 ipv4_is_in_any_range()
但无法识别,但没有用。在这里将不胜感激。谢谢
How can I ignore all the results with Name: Test1
having 10.X.X.X
IPs? I still need Test2 and Test8 in the results.
如果我正确理解你的意图,这应该有效:
| where not(Name == "Test1" and IPAddress startswith "10.")
如何忽略名称为 Test1 且具有 10.X.X.X IP 的所有结果?我仍然需要结果中的 Test2 和 Test8。
我试过了
| where Name == "Test1" or ipv4_is_in_range(IPAddress, "10.0.0.0/8") == false
我也试过 ipv4_is_in_any_range()
但无法识别,但没有用。在这里将不胜感激。谢谢
How can I ignore all the results with Name:
Test1
having10.X.X.X
IPs? I still need Test2 and Test8 in the results.
如果我正确理解你的意图,这应该有效:
| where not(Name == "Test1" and IPAddress startswith "10.")