-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add category anomalies to anomalies page Co-authored-by: Felix Stürmer <weltenwort@users.noreply.github.com> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> Co-authored-by: Felix Stürmer <weltenwort@users.noreply.github.com> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
- Loading branch information
1 parent
31c2595
commit 5b9c7ad
Showing
34 changed files
with
1,764 additions
and
892 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
137 changes: 137 additions & 0 deletions
137
x-pack/plugins/infra/common/http_api/log_analysis/results/log_entry_anomalies.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
import * as rt from 'io-ts'; | ||
|
||
import { timeRangeRT, routeTimingMetadataRT } from '../../shared'; | ||
|
||
export const LOG_ANALYSIS_GET_LOG_ENTRY_ANOMALIES_PATH = | ||
'/api/infra/log_analysis/results/log_entry_anomalies'; | ||
|
||
// [Sort field value, tiebreaker value] | ||
const paginationCursorRT = rt.tuple([ | ||
rt.union([rt.string, rt.number]), | ||
rt.union([rt.string, rt.number]), | ||
]); | ||
|
||
export type PaginationCursor = rt.TypeOf<typeof paginationCursorRT>; | ||
|
||
export const anomalyTypeRT = rt.keyof({ | ||
logRate: null, | ||
logCategory: null, | ||
}); | ||
|
||
export type AnomalyType = rt.TypeOf<typeof anomalyTypeRT>; | ||
|
||
const logEntryAnomalyCommonFieldsRT = rt.type({ | ||
id: rt.string, | ||
anomalyScore: rt.number, | ||
dataset: rt.string, | ||
typical: rt.number, | ||
actual: rt.number, | ||
type: anomalyTypeRT, | ||
duration: rt.number, | ||
startTime: rt.number, | ||
jobId: rt.string, | ||
}); | ||
const logEntrylogRateAnomalyRT = logEntryAnomalyCommonFieldsRT; | ||
const logEntrylogCategoryAnomalyRT = rt.partial({ | ||
categoryId: rt.string, | ||
}); | ||
const logEntryAnomalyRT = rt.intersection([ | ||
logEntryAnomalyCommonFieldsRT, | ||
logEntrylogRateAnomalyRT, | ||
logEntrylogCategoryAnomalyRT, | ||
]); | ||
|
||
export type LogEntryAnomaly = rt.TypeOf<typeof logEntryAnomalyRT>; | ||
|
||
export const getLogEntryAnomaliesSuccessReponsePayloadRT = rt.intersection([ | ||
rt.type({ | ||
data: rt.intersection([ | ||
rt.type({ | ||
anomalies: rt.array(logEntryAnomalyRT), | ||
// Signifies there are more entries backwards or forwards. If this was a request | ||
// for a previous page, there are more previous pages, if this was a request for a next page, | ||
// there are more next pages. | ||
hasMoreEntries: rt.boolean, | ||
}), | ||
rt.partial({ | ||
paginationCursors: rt.type({ | ||
// The cursor to use to fetch the previous page | ||
previousPageCursor: paginationCursorRT, | ||
// The cursor to use to fetch the next page | ||
nextPageCursor: paginationCursorRT, | ||
}), | ||
}), | ||
]), | ||
}), | ||
rt.partial({ | ||
timing: routeTimingMetadataRT, | ||
}), | ||
]); | ||
|
||
export type GetLogEntryAnomaliesSuccessResponsePayload = rt.TypeOf< | ||
typeof getLogEntryAnomaliesSuccessReponsePayloadRT | ||
>; | ||
|
||
const sortOptionsRT = rt.keyof({ | ||
anomalyScore: null, | ||
dataset: null, | ||
startTime: null, | ||
}); | ||
|
||
const sortDirectionsRT = rt.keyof({ | ||
asc: null, | ||
desc: null, | ||
}); | ||
|
||
const paginationPreviousPageCursorRT = rt.type({ | ||
searchBefore: paginationCursorRT, | ||
}); | ||
|
||
const paginationNextPageCursorRT = rt.type({ | ||
searchAfter: paginationCursorRT, | ||
}); | ||
|
||
const paginationRT = rt.intersection([ | ||
rt.type({ | ||
pageSize: rt.number, | ||
}), | ||
rt.partial({ | ||
cursor: rt.union([paginationPreviousPageCursorRT, paginationNextPageCursorRT]), | ||
}), | ||
]); | ||
|
||
export type Pagination = rt.TypeOf<typeof paginationRT>; | ||
|
||
const sortRT = rt.type({ | ||
field: sortOptionsRT, | ||
direction: sortDirectionsRT, | ||
}); | ||
|
||
export type Sort = rt.TypeOf<typeof sortRT>; | ||
|
||
export const getLogEntryAnomaliesRequestPayloadRT = rt.type({ | ||
data: rt.intersection([ | ||
rt.type({ | ||
// the ID of the source configuration | ||
sourceId: rt.string, | ||
// the time range to fetch the log entry anomalies from | ||
timeRange: timeRangeRT, | ||
}), | ||
rt.partial({ | ||
// Pagination properties | ||
pagination: paginationRT, | ||
// Sort properties | ||
sort: sortRT, | ||
}), | ||
]), | ||
}); | ||
|
||
export type GetLogEntryAnomaliesRequestPayload = rt.TypeOf< | ||
typeof getLogEntryAnomaliesRequestPayloadRT | ||
>; |
82 changes: 82 additions & 0 deletions
82
x-pack/plugins/infra/common/http_api/log_analysis/results/log_entry_examples.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
import * as rt from 'io-ts'; | ||
|
||
import { | ||
badRequestErrorRT, | ||
forbiddenErrorRT, | ||
timeRangeRT, | ||
routeTimingMetadataRT, | ||
} from '../../shared'; | ||
|
||
export const LOG_ANALYSIS_GET_LOG_ENTRY_RATE_EXAMPLES_PATH = | ||
'/api/infra/log_analysis/results/log_entry_examples'; | ||
|
||
/** | ||
* request | ||
*/ | ||
|
||
export const getLogEntryExamplesRequestPayloadRT = rt.type({ | ||
data: rt.intersection([ | ||
rt.type({ | ||
// the dataset to fetch the log rate examples from | ||
dataset: rt.string, | ||
// the number of examples to fetch | ||
exampleCount: rt.number, | ||
// the id of the source configuration | ||
sourceId: rt.string, | ||
// the time range to fetch the log rate examples from | ||
timeRange: timeRangeRT, | ||
}), | ||
rt.partial({ | ||
categoryId: rt.string, | ||
}), | ||
]), | ||
}); | ||
|
||
export type GetLogEntryExamplesRequestPayload = rt.TypeOf< | ||
typeof getLogEntryExamplesRequestPayloadRT | ||
>; | ||
|
||
/** | ||
* response | ||
*/ | ||
|
||
const logEntryExampleRT = rt.type({ | ||
id: rt.string, | ||
dataset: rt.string, | ||
message: rt.string, | ||
timestamp: rt.number, | ||
tiebreaker: rt.number, | ||
}); | ||
|
||
export type LogEntryExample = rt.TypeOf<typeof logEntryExampleRT>; | ||
|
||
export const getLogEntryExamplesSuccessReponsePayloadRT = rt.intersection([ | ||
rt.type({ | ||
data: rt.type({ | ||
examples: rt.array(logEntryExampleRT), | ||
}), | ||
}), | ||
rt.partial({ | ||
timing: routeTimingMetadataRT, | ||
}), | ||
]); | ||
|
||
export type GetLogEntryExamplesSuccessReponsePayload = rt.TypeOf< | ||
typeof getLogEntryExamplesSuccessReponsePayloadRT | ||
>; | ||
|
||
export const getLogEntryExamplesResponsePayloadRT = rt.union([ | ||
getLogEntryExamplesSuccessReponsePayloadRT, | ||
badRequestErrorRT, | ||
forbiddenErrorRT, | ||
]); | ||
|
||
export type GetLogEntryExamplesResponsePayload = rt.TypeOf< | ||
typeof getLogEntryExamplesResponsePayloadRT | ||
>; |
77 changes: 0 additions & 77 deletions
77
x-pack/plugins/infra/common/http_api/log_analysis/results/log_entry_rate_examples.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.