Skip to content

Commit ead16af

Browse files
committed
add dns bytes in
1 parent 34df09c commit ead16af

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

x-pack/legacy/plugins/siem/public/components/page/network/dns_histogram/translation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
import { i18n } from '@kbn/i18n';
88

99
export const NETWORK_DNS_HISTOGRAM = i18n.translate('xpack.siem.DNS.histogramTitle', {
10-
defaultMessage: 'Top DNS domains bytes out',
10+
defaultMessage: 'Top DNS domains bytes count',
1111
});

x-pack/legacy/plugins/siem/server/lib/network/elasticsearch_adapter.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,12 @@ const getHistogramData = (
209209
{
210210
x: _id,
211211
y: dnsBytesOut,
212-
g: 'dnsBytesOut',
212+
g: 'DNS Bytes Out',
213+
},
214+
{
215+
x: _id,
216+
y: dnsBytesIn,
217+
g: 'DNS Bytes In',
213218
},
214219
];
215220
return acc;

0 commit comments

Comments
 (0)