File tree 1 file changed +6
-4
lines changed
metron-analytics/metron-profiler-common 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -363,15 +363,17 @@ This profile captures the vertex degree of a host. If you view network communica
363
363
"profile": "in-degrees",
364
364
"onlyif": "source.type == 'yaf'",
365
365
"foreach": "ip_dst_addr",
366
- "update": { "in": "HLLP_ADD(in, ip_src_addr)" },
367
- "result": "HLLP_CARDINALITY(in)"
366
+ "init": { "estimator": "HLLP_INIT()" },
367
+ "update": { "estimator": "HLLP_ADD(estimator, ip_src_addr)" },
368
+ "result": "HLLP_CARDINALITY(estimator)"
368
369
},
369
370
{
370
371
"profile": "out-degrees",
371
372
"onlyif": "source.type == 'yaf'",
372
373
"foreach": "ip_src_addr",
373
- "update": { "out": "HLLP_ADD(out, ip_dst_addr)" },
374
- "result": "HLLP_CARDINALITY(out)"
374
+ "init": { "estimator": "HLLP_INIT()" },
375
+ "update": { "estimator": "HLLP_ADD(estimator, ip_dst_addr)" },
376
+ "result": "HLLP_CARDINALITY(estimator)"
375
377
}
376
378
]
377
379
}
You can’t perform that action at this time.
0 commit comments