-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ML] Adding anomaly score explanations #142999
Merged
jgowdyelastic
merged 35 commits into
elastic:main
from
jgowdyelastic:anomaly-score-explanation
Oct 24, 2022
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
5400566
[ML] Adding anomaly score explanations
jgowdyelastic f36547e
Merge branch 'main' into anomaly-score-explanation
jgowdyelastic 3a4ca38
fixing types
jgowdyelastic 10bb798
fixing jest test
jgowdyelastic 0c769db
test title
jgowdyelastic a72bda9
style improvements
jgowdyelastic 324d067
test data
jgowdyelastic 93dd2c8
removing test data
jgowdyelastic 1ab9b45
better test data
jgowdyelastic 38f081d
removing test data
jgowdyelastic d47e1e2
Merge branch 'main' into anomaly-score-explanation
jgowdyelastic 3d2a4ef
[CI] Auto-commit changed files from 'node scripts/precommit_hook.js -…
kibanamachine 3345cea
using eui colors
jgowdyelastic 4ecd7f4
Merge branch 'main' into anomaly-score-explanation
jgowdyelastic 6c312ea
reverting auto changes
jgowdyelastic 992c4a5
[CI] Auto-commit changed files from 'node scripts/precommit_hook.js -…
kibanamachine 3acbc7c
tiny change
jgowdyelastic 96a224a
reverting test data
jgowdyelastic 3c46afe
tiny change
jgowdyelastic 6ce7bac
Merge branch 'main' into anomaly-score-explanation
jgowdyelastic 872a12e
Merge branch 'main' into anomaly-score-explanation
jgowdyelastic 8be0cd7
removing render functions
jgowdyelastic 39cd2df
Merge branch 'main' into anomaly-score-explanation
jgowdyelastic 45313cd
adding tooltip text
jgowdyelastic d457144
Merge branch 'main' into anomaly-score-explanation
jgowdyelastic be8cfdf
adding comments
jgowdyelastic 7011f33
text update
jgowdyelastic 07fb3bb
Merge branch 'main' into anomaly-score-explanation
jgowdyelastic 79f3f6f
adding conditional impact score text
jgowdyelastic 2c0db82
text and scoring changes
jgowdyelastic 4fc0d32
translations
jgowdyelastic fcd6740
Merge branch 'main' into anomaly-score-explanation
jgowdyelastic 2e5e5cd
Merge branch 'main' into anomaly-score-explanation
jgowdyelastic 078e43c
updating text
jgowdyelastic 48628be
more text changes
jgowdyelastic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
File renamed without changes.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this exported publicly? If so, could you add comments, to each of the props.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure yeah.
@valeriy42 Could you please help with the comments on each property?
I can guess, but I think you'd do a better job.
anomaly_type
anomaly_length
single_bucket_impact
multi_bucket_impact
anomaly_characteristics_impact
lower_confidence_bound
typical_value
upper_confidence_bound
high_variance_penalty
incomplete_bucket_penalty
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
anomaly_characteristics_impact
Impact of the statistical properties of the detected anomalous interval.anomaly_length
Length of the detected anomaly in the number of buckets.anomaly_type
Type of the detected anomaly: spike or dip.high_variance_penalty
Indicates a reduction of anomaly score for the bucket with large confidence intervals.incomplete_bucket_penalty
Indicates a reduction of anomaly score if the bucket contains fewer samples than historically expected.lower_confidence_bound
Lower bound of the 95% confidence interval.multi_bucket_impact
Impact of the deviation between actual and typical in the past 12 buckets."single_bucket_impact
Impact of the deviation between actual and typical in the current bucket.typical_value
Typical (expected) value for this bucket.upper_confidence_bound
Upper bound of the 95% confidence interval.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @valeriy42
Updated in be8cfdf