-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathds.py
executable file
·127 lines (100 loc) · 4.29 KB
/
ds.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
#!/usr/bin/env python3
import traceback
from datetime import datetime, timezone
import click
import importlib
import pkgutil
from pathlib import Path
__version__ = '2.2.0'
from th2_ds.cli_util.interfaces.plugin import DSPlugin
def print_version(ctx, param, value):
if not value or ctx.resilient_parsing:
return
click.echo(F"Version {__version__}")
ctx.exit()
@click.group()
@click.option("--version", is_flag=True, callback=print_version, expose_value=False, is_eager=True)
def cli():
"""Data Services CLI util"""
def import_plugins(root_gr, plugins_folder_path: str) -> dict: # {plugin_name: plugin_module class}
module_path = plugins_folder_path.replace('/', '.')
builtin_plugins = {}
for finder, name, ispkg in pkgutil.iter_modules([str(Path(plugins_folder_path).resolve())]):
if not ispkg:
full_module_path = F"{module_path}.{name}"
try:
plugin_module = importlib.import_module(full_module_path)
builtin_plugins[name] = importlib.import_module(full_module_path)
if 'Plugin' in dir(plugin_module):
plugin: DSPlugin = plugin_module.Plugin()
root_gr.add_command(plugin.get_root_group())
# if 'ExtensionPlugin' in dir(plugin_module):
# plugin: DSPlugin = plugin_module.ExtensionPlugin()
except Exception as e:
click.secho(F"Cannot load plugin: '{full_module_path}'", bg='red')
print(traceback.format_exc())
print()
else:
path = module_path + '.' + name
plugin_module = importlib.import_module(F"{path}.{'__init__'}")
if 'Package' in dir(plugin_module):
plugin: DSPlugin = plugin_module.Package()
gr = plugin.get_root_group()
root_gr.add_command(gr)
r = import_plugins(gr, module_path + '/' + name)
builtin_plugins.update(r)
return builtin_plugins
def main():
# name: importlib.import_module(F"th2_data_services.cli_util.plugins.{name}")
import_plugins(cli, 'th2_ds/cli_util/plugins')
import_plugins(cli, 'dsplugins')
# from dsplugins_test import extend_get_plugin
dt_object = datetime.now()
local_datetime = dt_object.astimezone()
local_tzinfo = local_datetime.tzinfo
local_sec_start = local_datetime.timestamp()
utc_datetime = dt_object.astimezone(timezone.utc)
utc_tzinfo = utc_datetime.tzinfo
utc_sec = utc_datetime.timestamp()
click.secho(f'[ds cli] LOCAL: {local_datetime} [{local_tzinfo}]', fg='green')
click.secho(f' UTC: {utc_datetime} [{utc_tzinfo}] | sec: {utc_sec}', fg='green')
print()
try:
cli()
except Exception:
raise
finally:
dt_object = datetime.now()
local_datetime = dt_object.astimezone()
local_tzinfo = local_datetime.tzinfo
local_sec_end = local_datetime.timestamp()
utc_datetime = dt_object.astimezone(timezone.utc)
utc_tzinfo = utc_datetime.tzinfo
utc_sec = utc_datetime.timestamp()
print()
click.secho(f'[ds cli] LOCAL: {local_datetime} [{local_tzinfo}]', fg='green')
click.secho(f' UTC: {utc_datetime} [{utc_tzinfo}] | sec: {utc_sec}', fg='green')
click.secho(f' Took time: {local_sec_end - local_sec_start}, s')
if __name__ == "__main__":
"""
This is a script that allows you to receive data, check the speed of their upload and perform
various types of data analysis
It is possible to plug-in tests here
ds get events -c var1.yaml -o outfile --print
ds get messages
ds get messages-by-id A1, A2 ... --from-file
ds speed-test -t events
ds speed-test -t messages
# Functions for analyzing data over a period of time
ds analysis density -t events
ds analysis density -t messages
ds analysis barch
ds analysis duplicates
ds analysis sequence --from-file
Must build a graph based on x - sequence number of the message, on y - timestamp.
Should answer the question whether the data received over the period is consistent
Should return the intervals of normal growth and abnormal growth
Each of their streams and directions should be separately
ds demo
"""
main()