-
Notifications
You must be signed in to change notification settings - Fork 8
/
orion.py
163 lines (144 loc) · 6.14 KB
/
orion.py
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
"""
This is the cli file for orion, tool to detect regressions using hunter
"""
# pylint: disable = import-error, line-too-long, no-member
import logging
import sys
import warnings
from typing import Any
import click
import uvicorn
from fmatch.logrus import SingletonLogger
from pkg.runTest import run
from pkg.config import load_config
import pkg.constants as cnsts
warnings.filterwarnings("ignore", message="Unverified HTTPS request.*")
warnings.filterwarnings(
"ignore", category=UserWarning, message=".*Connecting to.*verify_certs=False.*"
)
class MutuallyExclusiveOption(click.Option):
"""Class to implement mutual exclusivity between options in click
Args:
click (Option): _description_
"""
def __init__(self, *args: tuple, **kwargs: dict[str, dict]) -> None:
self.mutually_exclusive = set(kwargs.pop("mutually_exclusive", []))
help = kwargs.get("help", "") # pylint: disable=redefined-builtin
if self.mutually_exclusive:
ex_str = ", ".join(self.mutually_exclusive)
kwargs["help"] = help + (
" NOTE: This argument is mutually exclusive with "
" arguments: [" + ex_str + "]."
)
super().__init__(*args, **kwargs)
def handle_parse_result(self, ctx, opts, args):
if self.mutually_exclusive.intersection(opts) and self.name in opts:
raise click.UsageError(
f"Illegal usage: `{self.name}` is mutually exclusive with "
f"arguments `{', '.join(self.mutually_exclusive)}`."
)
return super().handle_parse_result(ctx, opts, args)
def validate_anomaly_options(ctx, param, value: Any) -> Any: # pylint: disable = W0613
""" validate options so that can only be used with certain flags
"""
if value or (
ctx.params.get("anomaly_window") or ctx.params.get("min_anomaly_percent")
):
if not ctx.params.get("anomaly_detection"):
raise click.UsageError(
"`--anomaly-window` and `--min-anomaly-percent` can only be used when `--anomaly-detection` is enabled."
)
return value
@click.group()
def cli(max_content_width=120): # pylint: disable=unused-argument
"""
Orion is a tool which can run change point detection for set of runs using statistical models
"""
# pylint: disable=too-many-locals
@cli.command(name="cmd")
@click.option(
"--cmr",
is_flag=True,
help="Generate percent difference in comparison",
cls=MutuallyExclusiveOption,
mutually_exclusive=["anomaly_detection","hunter_analyze"],
)
@click.option("--filter", is_flag=True, help="Generate percent difference in comparison")
@click.option("--config", default="config.yaml", help="Path to the configuration file")
@click.option(
"--save-data-path", default="data.csv", help="Path to save the output file"
)
@click.option("--debug", default=False, is_flag=True, help="log level")
@click.option(
"--hunter-analyze",
is_flag=True,
help="run hunter analyze",
cls=MutuallyExclusiveOption,
mutually_exclusive=["anomaly_detection","cmr"],
)
@click.option("--anomaly-window", type=int, callback=validate_anomaly_options, help="set window size for moving average for anomaly-detection")
@click.option("--min-anomaly-percent", type=int, callback=validate_anomaly_options, help="set minimum percentage difference from moving average for data point to be detected as anomaly")
@click.option(
"--anomaly-detection",
is_flag=True,
help="run anomaly detection algorithm powered by isolation forest",
cls=MutuallyExclusiveOption,
mutually_exclusive=["hunter_analyze","cmr"],
)
@click.option(
"-o",
"--output-format",
type=click.Choice([cnsts.JSON, cnsts.TEXT, cnsts.JUNIT]),
default=cnsts.TEXT,
help="Choose output format (json, text or junit)",
)
@click.option("--save-output-path", default="output.txt", help="path to save output file with regressions")
@click.option("--uuid", default="", help="UUID to use as base for comparisons")
@click.option(
"--baseline", default="", help="Baseline UUID(s) to to compare against uuid"
)
@click.option("--lookback", help="Get data from last X days and Y hours. Format in XdYh")
@click.option("--convert-tinyurl", is_flag=True, help="Convert buildUrls to tiny url format for better formatting")
@click.option("--collapse", is_flag=True, help="Only outputs changepoints, previous and later runs in the xml format")
@click.option("--node-count", default=False, help="Match any node iterations count")
@click.option("--lookback-size", type=int, default=10000, help="Maximum number of entries to be looked back")
def cmd_analysis(**kwargs):
"""
Orion runs on command line mode, and helps in detecting regressions
"""
level = logging.DEBUG if kwargs["debug"] else logging.INFO
logger_instance = SingletonLogger(debug=level, name="Orion")
logger_instance.info("🏹 Starting Orion in command-line mode")
kwargs["configMap"] = load_config(kwargs["config"])
output, regression_flag = run(**kwargs)
if output is None:
logger_instance.error("Terminating test")
sys.exit(0)
for test_name, result_table in output.items():
print(test_name)
print("=" * len(test_name))
print(result_table)
output_file_name = f"{kwargs['save_output_path'].split('.')[0]}_{test_name}.{kwargs['save_output_path'].split('.')[1]}"
with open(output_file_name, 'w', encoding="utf-8") as file:
file.write(str(result_table))
if regression_flag:
sys.exit(2) ## regression detected
@cli.command(name="daemon")
@click.option("--debug", default=False, is_flag=True, help="log level")
@click.option("--port", default=8080, help="set port")
def rundaemon(debug: bool, port: int):
"""
Orion runs on daemon mode
\b
"""
level = logging.DEBUG if debug else logging.INFO
logger_instance = SingletonLogger(debug=level, name='Orion')
logger_instance.info("🏹 Starting Orion in Daemon mode")
uvicorn.run("pkg.daemon:app", port=port)
if __name__ == "__main__":
if len(sys.argv) <= 1:
cli.main(["--help"])
else:
cli.add_command(cmd_analysis)
cli.add_command(rundaemon)
cli()