-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Returning multiple dimensions in RCA for anomaly detection #5236
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
Merged
harishsk
merged 9 commits into
dotnet:master
from
klausmh:dev/klausmh/rca-multidimension
Jun 30, 2020
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
6e0a05d
Proposal for returning multiple dimensions in RCA
klausmh 9516406
Handling review comments.
klausmh d28eec7
Refactoring. Test.
klausmh ad7e6b6
Merged with master
klausmh 2a42fb6
Updating
klausmh 111b5c4
Handled review comments
klausmh ca5cbe5
Revert libmf
klausmh 9e0441c
Removed linq
klausmh 32491fa
Handled comments on names.
klausmh 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
140 changes: 140 additions & 0 deletions
140
...les/Microsoft.ML.Samples/Dynamic/Transforms/TimeSeries/LocalizeRootCauseMultidimension.cs
This file contains hidden or 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,140 @@ | ||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.Linq; | ||
| using Microsoft.ML; | ||
| using Microsoft.ML.TimeSeries; | ||
|
|
||
| namespace Samples.Dynamic | ||
| { | ||
| public static class LocalizeRootCauseMultipleDimensions | ||
| { | ||
| private static string AGG_SYMBOL = "##SUM##"; | ||
|
|
||
| public static void Example() | ||
| { | ||
| // Create a new ML context, for ML.NET operations. It can be used for | ||
| // exception tracking and logging, as well as the source of randomness. | ||
| var mlContext = new MLContext(); | ||
|
|
||
| // Create an root cause localization input instance. | ||
| DateTime timestamp = GetTimestamp(); | ||
| var data = new RootCauseLocalizationInput(timestamp, GetAnomalyDimension(), new List<MetricSlice>() { new MetricSlice(timestamp, GetTimeSeriesPoints()) }, AggregateType.Sum, AGG_SYMBOL); | ||
|
|
||
| // Get the root cause localization result. | ||
| List<RootCause> prediction = mlContext.AnomalyDetection.LocalizeRootCauses(data); | ||
|
|
||
| // Print the localization results. | ||
| int count = 0; | ||
| foreach (RootCause cause in prediction) | ||
| { | ||
| count++; | ||
| foreach (RootCauseItem item in cause.Items) | ||
| { | ||
| Console.WriteLine($"Prepared cause #{count} ..."); | ||
| Console.WriteLine($"Score: {item.Score}, Path: {String.Join(" ", item.Path)}, Direction: {item.Direction}, Dimension:{String.Join(" ", item.Dimension)}"); | ||
| } | ||
| } | ||
|
|
||
| //Prepared cause #1 ... | ||
| //Score: 0.26670448876705927, Path: DataCenter, Direction: Up, Dimension:[Country, UK] [DeviceType, ##SUM##] [DataCenter, DC1] | ||
| //Prepared cause #2 ... | ||
| //Score: 0.254746585094852, Path: DeviceType, Direction: Up, Dimension:[Country, UK] [DeviceType, Laptop] [DataCenter, ##SUM##] | ||
| } | ||
|
|
||
| private static List<TimeSeriesPoint> GetTimeSeriesPoints() | ||
| { | ||
| List<TimeSeriesPoint> TimeSeriesPoints = new List<TimeSeriesPoint>(); | ||
|
|
||
| Dictionary<string, Object> dic1 = new Dictionary<string, Object> | ||
| { | ||
| { "Country", "UK" }, | ||
| { "DeviceType", "Laptop" }, | ||
| { "DataCenter", "DC1" } | ||
| }; | ||
| TimeSeriesPoints.Add(new TimeSeriesPoint(200, 100, true, dic1)); | ||
|
|
||
| Dictionary<string, Object> dic2 = new Dictionary<string, Object>(); | ||
| dic2.Add("Country", "UK"); | ||
| dic2.Add("DeviceType", "Mobile"); | ||
| dic2.Add("DataCenter", "DC1"); | ||
| TimeSeriesPoints.Add(new TimeSeriesPoint(1000, 100, true, dic2)); | ||
|
|
||
| Dictionary<string, Object> dic3 = new Dictionary<string, Object>(); | ||
| dic3.Add("Country", "UK"); | ||
| dic3.Add("DeviceType", AGG_SYMBOL); | ||
| dic3.Add("DataCenter", "DC1"); | ||
| TimeSeriesPoints.Add(new TimeSeriesPoint(1200, 200, true, dic3)); | ||
|
|
||
| Dictionary<string, Object> dic4 = new Dictionary<string, Object>(); | ||
| dic4.Add("Country", "UK"); | ||
| dic4.Add("DeviceType", "Laptop"); | ||
| dic4.Add("DataCenter", "DC2"); | ||
| TimeSeriesPoints.Add(new TimeSeriesPoint(100, 100, false, dic4)); | ||
|
|
||
| Dictionary<string, Object> dic5 = new Dictionary<string, Object>(); | ||
| dic5.Add("Country", "UK"); | ||
| dic5.Add("DeviceType", "Mobile"); | ||
| dic5.Add("DataCenter", "DC2"); | ||
| TimeSeriesPoints.Add(new TimeSeriesPoint(200, 200, false, dic5)); | ||
|
|
||
| Dictionary<string, Object> dic6 = new Dictionary<string, Object>(); | ||
| dic6.Add("Country", "UK"); | ||
| dic6.Add("DeviceType", AGG_SYMBOL); | ||
| dic6.Add("DataCenter", "DC2"); | ||
| TimeSeriesPoints.Add(new TimeSeriesPoint(300, 300, false, dic6)); | ||
|
|
||
| Dictionary<string, Object> dic7 = new Dictionary<string, Object>(); | ||
| dic7.Add("Country", "UK"); | ||
| dic7.Add("DeviceType", AGG_SYMBOL); | ||
| dic7.Add("DataCenter", AGG_SYMBOL); | ||
| TimeSeriesPoints.Add(new TimeSeriesPoint(1800, 750, true, dic7)); | ||
|
|
||
| Dictionary<string, Object> dic8 = new Dictionary<string, Object>(); | ||
| dic8.Add("Country", "UK"); | ||
| dic8.Add("DeviceType", "Laptop"); | ||
| dic8.Add("DataCenter", AGG_SYMBOL); | ||
| TimeSeriesPoints.Add(new TimeSeriesPoint(1500, 450, true, dic8)); | ||
|
|
||
| Dictionary<string, Object> dic9 = new Dictionary<string, Object>(); | ||
| dic9.Add("Country", "UK"); | ||
| dic9.Add("DeviceType", "Mobile"); | ||
| dic9.Add("DataCenter", AGG_SYMBOL); | ||
| TimeSeriesPoints.Add(new TimeSeriesPoint(600, 550, false, dic9)); | ||
|
|
||
| Dictionary<string, Object> dic10 = new Dictionary<string, Object>(); | ||
| dic10.Add("Country", "UK"); | ||
| dic10.Add("DeviceType", "Mobile"); | ||
| dic10.Add("DataCenter", "DC3"); | ||
| TimeSeriesPoints.Add(new TimeSeriesPoint(100, 100, false, dic10)); | ||
|
|
||
| Dictionary<string, Object> dic11 = new Dictionary<string, Object>(); | ||
| dic11.Add("Country", "UK"); | ||
| dic11.Add("DeviceType", "Laptop"); | ||
| dic11.Add("DataCenter", "DC3"); | ||
| TimeSeriesPoints.Add(new TimeSeriesPoint(200, 250, false, dic11)); | ||
|
|
||
| Dictionary<string, Object> dic12 = new Dictionary<string, Object>(); | ||
| dic12.Add("Country", "UK"); | ||
| dic12.Add("DeviceType", AGG_SYMBOL); | ||
| dic12.Add("DataCenter", "DC3"); | ||
| TimeSeriesPoints.Add(new TimeSeriesPoint(300, 350, false, dic12)); | ||
|
|
||
| return TimeSeriesPoints; | ||
| } | ||
|
|
||
| private static Dictionary<string, Object> GetAnomalyDimension() | ||
| { | ||
| Dictionary<string, Object> dim = new Dictionary<string, Object>(); | ||
| dim.Add("Country", "UK"); | ||
| dim.Add("DeviceType", AGG_SYMBOL); | ||
| dim.Add("DataCenter", AGG_SYMBOL); | ||
|
|
||
| return dim; | ||
| } | ||
|
|
||
| private static DateTime GetTimestamp() | ||
| { | ||
| return new DateTime(2020, 3, 23, 0, 0, 0); | ||
| } | ||
| } | ||
| } |
This file contains hidden or 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 hidden or 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.
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.
Uh oh!
There was an error while loading. Please reload this page.