3 instantiations of RootCauseItem
Microsoft.ML.TimeSeries (3)
RootCauseAnalyzer.cs (3)
149
_preparedCauses.Add(new RootCause { Items = new List<RootCauseItem>() { new
RootCauseItem
(anomalyDimension) } });
176
rootCause.Items.Add(new
RootCauseItem
(anomalyDimension));
182
new
RootCauseItem
(UpdateDimensionValue(anomalyDimension, dimension.DimensionKey, anomaly.Dimension[dimension.DimensionKey]), new List<string>() { dimension.DimensionKey })));
11 references to RootCauseItem
Microsoft.ML.Samples (2)
Dynamic\Transforms\TimeSeries\LocalizeRootCause.cs (1)
27
foreach (
RootCauseItem
item in prediction.Items)
Dynamic\Transforms\TimeSeries\LocalizeRootCauseMultidimension.cs (1)
31
foreach (
RootCauseItem
item in cause.Items)
Microsoft.ML.TimeSeries (9)
RootCauseAnalyzer.cs (4)
56
_preparedCauses.Add(new RootCause() { Items = new List<
RootCauseItem
>() });
149
_preparedCauses.Add(new RootCause { Items = new List<
RootCauseItem
>() { new RootCauseItem(anomalyDimension) } });
155
RootCause rootCause = new RootCause { Items = new List<
RootCauseItem
>() };
358
foreach (
RootCauseItem
item in dst.Items)
RootCauseLocalizationType.cs (5)
14
/// A List for root cause item. Instance of the item should be <see cref="
RootCauseItem
"/>.
16
public List<
RootCauseItem
> Items { get; set; }
30
Items = new List<
RootCauseItem
>();
122
public sealed class RootCauseItem : IEquatable<
RootCauseItem
>
152
public bool Equals(
RootCauseItem
other)