Hello,
That field has been deprecated for years now, two methods spring to mind:
If you know the Table name, you can do something like (I used a datatable to simulate a watchlist). It assumes each named table has a Column called: Computer (which isnt always the case)
let fakeWatchlist = datatable (Computer:string)
[
'fake0001',
'fake0010'
]
;
Heartbeat
| where TimeGenerated > ago(30d)
| where Computer in (fakeWatchlist)
| summarize Gbytes=sum(_BilledSize)/(1024*1024*1024) by Computer
or a very inefficient query which looks over all Tables for the named Computers in the Computer column
let fakeWatchlist = datatable (Computer:string)
[
'fake0001',
'fake0010']
;
union *
| where TimeGenerated > ago(30d)
| where Computer in (fakeWatchlist)
| summarize Gbytes=sum(_BilledSize)/(1024*1024*1024) by Computer