This repository has been archived by the owner on Jun 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathuml_sequence_metrics.txt
115 lines (84 loc) · 2.4 KB
/
uml_sequence_metrics.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
@startuml
'no shadow
skinparam shadowing false
'size of picture
skinparam dpi 100
'color
skinparam participant {
BackgroundColor AliceBlue
ArrowColor CornflowerBlue
BorderColor CornflowerBlue
}
skinparam component {
BackgroundColor AliceBlue
ArrowColor CornflowerBlue
BorderColor CornflowerBlue
}
skinparam database {
BackgroundColor AliceBlue
ArrowColor CornflowerBlue
BorderColor CornflowerBlue
}
skinparam note {
BackgroundColor AliceBlue
BorderColor CornflowerBlue
}
skinparam sequence {
LifeLineBorderColor CornflowerBlue
LifeLineBackgroundColor AliceBlue
}
skinparam stereotypeCBackgroundColor OldLace
title ee-outliers - Sequence - Metrics
participant Metrics
participant Analyzer
participant ES
database Elasticsearch
Metrics -> Metrics : evaluate_model
activate Metrics
Metrics -> Metrics : _compute_aggregator_and_target_value
Metrics -> Metrics : _add_document_to_batch
Metrics -> Metrics : _evaluate_batch_for_outliers
activate Metrics
Metrics -> Metrics : _evaluate_aggregator_for_outliers
activate Metrics
Metrics -> Metrics : _evaluate_each_aggregator_value_for_outliers
activate Metrics
note right of Metrics
Condition to detect outlier
end note
Metrics -> Metrics : _compute_fields_observation_and_create_outlier
Metrics -> Analyzer : process_outlier
activate Analyzer
note right of Analyzer
Create Outlier(...)
end note
' END process_outlier
return outlier
note right of Metrics
is_whitelist
end note
' END _evaluate_each_aggregator_value_for_outliers
return
' END _evaluate_aggregator_for_outliers
return
' END _evaluate_batch_for_outliers
return
Metrics -> Analyzer : process_outlier
activate Analyzer
Analyzer -> ES : process_outlier
activate ES
note right of ES
is_whitelist
end note
ES -> ES : save_outlier
activate ES
ES -> Elasticsearch
' END save_outlier
return
' END process_outlier
return
' END process_outlier
return
' END evaluate_model
deactivate Metrics
@enduml