Skip to content

Commit 931dab9

Browse files
Cleanup
1 parent 122a031 commit 931dab9

4 files changed

Lines changed: 0 additions & 20 deletions

File tree

x-pack/legacy/plugins/siem/public/mock/global_state.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ export const mockGlobalState: State = {
4646
},
4747
events: { activePage: 0, limit: 10 },
4848
uncommonProcesses: { activePage: 0, limit: 10 },
49-
anomalies: null,
5049
},
5150
filterQuery: null,
5251
filterQueryDraft: null,

x-pack/legacy/plugins/siem/public/pages/network/translations.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,6 @@ export const PAGE_TITLE = i18n.translate('xpack.siem.network.pageTitle', {
1414
defaultMessage: 'Network',
1515
});
1616

17-
export const NAVIGATION_TLS_TITLE = i18n.translate('xpack.siem.network.navigation.tlsTitle', {
18-
defaultMessage: 'Transport Layer Security',
19-
});
20-
21-
export const NAVIGATION_USERS_TITLE = i18n.translate('xpack.siem.network.navigation.usersTitle', {
22-
defaultMessage: 'Users',
23-
});
24-
25-
export const NAVIGATION_ANOMALIES_TITLE = i18n.translate(
26-
'xpack.siem.netowork.navigation.anomaliesTitle',
27-
{
28-
defaultMessage: 'Anomalies',
29-
}
30-
);
31-
3217
export const EMPTY_TITLE = i18n.translate('xpack.siem.network.emptyTitle', {
3318
defaultMessage:
3419
'It looks like you don’t have any indices relevant to network in the SIEM application',

x-pack/legacy/plugins/siem/public/store/network/helpers.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ export const mockNetworkState: NetworkModel = {
7777
direction: Direction.asc,
7878
},
7979
},
80-
[IpDetailsTableType.anomalies]: null,
8180
},
8281
filterQuery: null,
8382
filterQueryDraft: null,
@@ -118,7 +117,6 @@ describe('Network redux store', () => {
118117
},
119118
tls: { activePage: 0, limit: 10, tlsSortField: { field: '_id', direction: 'desc' } },
120119
users: { activePage: 0, limit: 10, usersSortField: { field: 'name', direction: 'asc' } },
121-
anomalies: null,
122120
});
123121
});
124122
});

x-pack/legacy/plugins/siem/public/store/network/model.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ export enum IpDetailsTableType {
3434
domains = 'domains',
3535
tls = 'tls',
3636
users = 'users',
37-
anomalies = 'anomalies',
3837
}
3938

4039
export interface BasicQueryPaginated {
@@ -82,7 +81,6 @@ export interface IpOverviewQueries {
8281
[IpDetailsTableType.domains]: DomainsQuery;
8382
[IpDetailsTableType.tls]: TlsQuery;
8483
[IpDetailsTableType.users]: UsersQuery;
85-
[IpDetailsTableType.anomalies]: null | undefined;
8684
}
8785

8886
export interface NetworkDetailsModel {

0 commit comments

Comments
 (0)