vnai 2.1.7__py3-none-any.whl → 2.1.9__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
vnai/beam/metrics.py CHANGED
@@ -1,167 +1,167 @@
1
- import sys
2
- import time
3
- import threading
4
- from datetime import datetime
5
- import hashlib
6
- import json
7
-
8
- class Collector:
9
- _instance = None
10
- _lock = threading.Lock()
11
-
12
- def __new__(cls):
13
- with cls._lock:
14
- if cls._instance is None:
15
- cls._instance = super(Collector, cls).__new__(cls)
16
- cls._instance._initialize()
17
- return cls._instance
18
-
19
- def _initialize(self):
20
- self.metrics = {
21
- "function": [],
22
- "rate_limit": [],
23
- "request": [],
24
- "error": []
25
- }
26
- self.thresholds = {
27
- "buffer_size": 50,
28
- "error_threshold": 0.1,
29
- "performance_threshold": 5.0
30
- }
31
- self.function_count = 0
32
- self.colab_auth_triggered = False
33
- self.max_metric_length = 200
34
- self._last_record_time = {}
35
- self.min_interval_per_type = 0.5
36
- self._recent_hashes = []
37
- self._sending_metrics = False
38
-
39
- def record(self, metric_type, data, priority=None):
40
- if not isinstance(data, dict):
41
- data = {"value": str(data)}
42
- if"timestamp" not in data:
43
- data["timestamp"] = datetime.now().isoformat()
44
- if metric_type !="system_info":
45
- data.pop("system", None)
46
- from vnai.scope.profile import inspector
47
- data["machine_id"] = inspector.fingerprint()
48
- now = time.time()
49
- last_time = self._last_record_time.get(metric_type, 0)
50
- if now - last_time < self.min_interval_per_type and priority !="high":
51
- return
52
- self._last_record_time[metric_type] = now
53
- data_hash = hashlib.md5(json.dumps(data, sort_keys=True).encode()).hexdigest()
54
- if data_hash in self._recent_hashes and priority !="high":
55
- return
56
- self._recent_hashes.append(data_hash)
57
- if metric_type in self.metrics:
58
- self.metrics[metric_type].append(data)
59
- if len(self.metrics[metric_type]) > self.max_metric_length:
60
- self.metrics[metric_type] = self.metrics[metric_type][-self.max_metric_length:]
61
- else:
62
- self.metrics["function"].append(data)
63
- if metric_type =="function":
64
- self.function_count += 1
65
- if self.function_count > 10 and not self.colab_auth_triggered and'google.colab' in sys.modules:
66
- self.colab_auth_triggered = True
67
- threading.Thread(target=self._trigger_colab_auth, daemon=True).start()
68
- if sum(len(metric_list) for metric_list in self.metrics.values()) >= self.thresholds["buffer_size"]:
69
- self._send_metrics()
70
- if priority =="high" or metric_type =="error":
71
- self._send_metrics()
72
-
73
- def _trigger_colab_auth(self):
74
- try:
75
- from vnai.scope.profile import inspector
76
- inspector.get_or_create_user_id()
77
- except:
78
- pass
79
-
80
- def _send_metrics(self):
81
- if self._sending_metrics:
82
- return
83
- self._sending_metrics = True
84
- try:
85
- from vnai.flow.relay import track_function_call, track_rate_limit, track_api_request
86
- except ImportError:
87
- for metric_type in self.metrics:
88
- self.metrics[metric_type] = []
89
- self._sending_metrics = False
90
- return
91
- for metric_type, data_list in self.metrics.items():
92
- if not data_list:
93
- continue
94
- for data in data_list:
95
- try:
96
- if metric_type =="function":
97
- track_function_call(
98
- function_name=data.get("function","unknown"),
99
- source=data.get("source","vnai"),
100
- execution_time=data.get("execution_time", 0),
101
- success=data.get("success", True),
102
- error=data.get("error"),
103
- args=data.get("args")
104
- )
105
- elif metric_type =="rate_limit":
106
- track_rate_limit(
107
- source=data.get("source","vnai"),
108
- limit_type=data.get("limit_type","unknown"),
109
- limit_value=data.get("limit_value", 0),
110
- current_usage=data.get("current_usage", 0),
111
- is_exceeded=data.get("is_exceeded", False)
112
- )
113
- elif metric_type =="request":
114
- track_api_request(
115
- endpoint=data.get("endpoint","unknown"),
116
- source=data.get("source","vnai"),
117
- method=data.get("method","GET"),
118
- status_code=data.get("status_code", 200),
119
- execution_time=data.get("execution_time", 0),
120
- request_size=data.get("request_size", 0),
121
- response_size=data.get("response_size", 0)
122
- )
123
- except Exception as e:
124
- continue
125
- self.metrics[metric_type] = []
126
- self._sending_metrics = False
127
-
128
- def get_metrics_summary(self):
129
- return {
130
- metric_type: len(data_list)
131
- for metric_type, data_list in self.metrics.items()
132
- }
133
- collector = Collector()
134
-
135
- def capture(module_type="function"):
136
- def decorator(func):
137
- def wrapper(*args, **kwargs):
138
- start_time = time.time()
139
- success = False
140
- error = None
141
- try:
142
- result = func(*args, **kwargs)
143
- success = True
144
- return result
145
- except Exception as e:
146
- error = str(e)
147
- collector.record("error", {
148
- "function": func.__name__,
149
- "error": error,
150
- "args": str(args)[:100] if args else None
151
- })
152
- raise
153
- finally:
154
- execution_time = time.time() - start_time
155
- collector.record(
156
- module_type,
157
- {
158
- "function": func.__name__,
159
- "execution_time": execution_time,
160
- "success": success,
161
- "error": error,
162
- "timestamp": datetime.now().isoformat(),
163
- "args": str(args)[:100] if args else None
164
- }
165
- )
166
- return wrapper
1
+ import sys
2
+ import time
3
+ import threading
4
+ from datetime import datetime
5
+ import hashlib
6
+ import json
7
+
8
+ class Collector:
9
+ _instance = None
10
+ _lock = threading.Lock()
11
+
12
+ def __new__(cls):
13
+ with cls._lock:
14
+ if cls._instance is None:
15
+ cls._instance = super(Collector, cls).__new__(cls)
16
+ cls._instance._initialize()
17
+ return cls._instance
18
+
19
+ def _initialize(self):
20
+ self.metrics = {
21
+ "function": [],
22
+ "rate_limit": [],
23
+ "request": [],
24
+ "error": []
25
+ }
26
+ self.thresholds = {
27
+ "buffer_size": 50,
28
+ "error_threshold": 0.1,
29
+ "performance_threshold": 5.0
30
+ }
31
+ self.function_count = 0
32
+ self.colab_auth_triggered = False
33
+ self.max_metric_length = 200
34
+ self._last_record_time = {}
35
+ self.min_interval_per_type = 0.5
36
+ self._recent_hashes = []
37
+ self._sending_metrics = False
38
+
39
+ def record(self, metric_type, data, priority=None):
40
+ if not isinstance(data, dict):
41
+ data = {"value": str(data)}
42
+ if"timestamp" not in data:
43
+ data["timestamp"] = datetime.now().isoformat()
44
+ if metric_type !="system_info":
45
+ data.pop("system", None)
46
+ from vnai.scope.profile import inspector
47
+ data["machine_id"] = inspector.fingerprint()
48
+ now = time.time()
49
+ last_time = self._last_record_time.get(metric_type, 0)
50
+ if now - last_time < self.min_interval_per_type and priority !="high":
51
+ return
52
+ self._last_record_time[metric_type] = now
53
+ data_hash = hashlib.md5(json.dumps(data, sort_keys=True).encode()).hexdigest()
54
+ if data_hash in self._recent_hashes and priority !="high":
55
+ return
56
+ self._recent_hashes.append(data_hash)
57
+ if metric_type in self.metrics:
58
+ self.metrics[metric_type].append(data)
59
+ if len(self.metrics[metric_type]) > self.max_metric_length:
60
+ self.metrics[metric_type] = self.metrics[metric_type][-self.max_metric_length:]
61
+ else:
62
+ self.metrics["function"].append(data)
63
+ if metric_type =="function":
64
+ self.function_count += 1
65
+ if self.function_count > 10 and not self.colab_auth_triggered and'google.colab' in sys.modules:
66
+ self.colab_auth_triggered = True
67
+ threading.Thread(target=self._trigger_colab_auth, daemon=True).start()
68
+ if sum(len(metric_list) for metric_list in self.metrics.values()) >= self.thresholds["buffer_size"]:
69
+ self._send_metrics()
70
+ if priority =="high" or metric_type =="error":
71
+ self._send_metrics()
72
+
73
+ def _trigger_colab_auth(self):
74
+ try:
75
+ from vnai.scope.profile import inspector
76
+ inspector.get_or_create_user_id()
77
+ except:
78
+ pass
79
+
80
+ def _send_metrics(self):
81
+ if self._sending_metrics:
82
+ return
83
+ self._sending_metrics = True
84
+ try:
85
+ from vnai.flow.relay import track_function_call, track_rate_limit, track_api_request
86
+ except ImportError:
87
+ for metric_type in self.metrics:
88
+ self.metrics[metric_type] = []
89
+ self._sending_metrics = False
90
+ return
91
+ for metric_type, data_list in self.metrics.items():
92
+ if not data_list:
93
+ continue
94
+ for data in data_list:
95
+ try:
96
+ if metric_type =="function":
97
+ track_function_call(
98
+ function_name=data.get("function","unknown"),
99
+ source=data.get("source","vnai"),
100
+ execution_time=data.get("execution_time", 0),
101
+ success=data.get("success", True),
102
+ error=data.get("error"),
103
+ args=data.get("args")
104
+ )
105
+ elif metric_type =="rate_limit":
106
+ track_rate_limit(
107
+ source=data.get("source","vnai"),
108
+ limit_type=data.get("limit_type","unknown"),
109
+ limit_value=data.get("limit_value", 0),
110
+ current_usage=data.get("current_usage", 0),
111
+ is_exceeded=data.get("is_exceeded", False)
112
+ )
113
+ elif metric_type =="request":
114
+ track_api_request(
115
+ endpoint=data.get("endpoint","unknown"),
116
+ source=data.get("source","vnai"),
117
+ method=data.get("method","GET"),
118
+ status_code=data.get("status_code", 200),
119
+ execution_time=data.get("execution_time", 0),
120
+ request_size=data.get("request_size", 0),
121
+ response_size=data.get("response_size", 0)
122
+ )
123
+ except Exception as e:
124
+ continue
125
+ self.metrics[metric_type] = []
126
+ self._sending_metrics = False
127
+
128
+ def get_metrics_summary(self):
129
+ return {
130
+ metric_type: len(data_list)
131
+ for metric_type, data_list in self.metrics.items()
132
+ }
133
+ collector = Collector()
134
+
135
+ def capture(module_type="function"):
136
+ def decorator(func):
137
+ def wrapper(*args, **kwargs):
138
+ start_time = time.time()
139
+ success = False
140
+ error = None
141
+ try:
142
+ result = func(*args, **kwargs)
143
+ success = True
144
+ return result
145
+ except Exception as e:
146
+ error = str(e)
147
+ collector.record("error", {
148
+ "function": func.__name__,
149
+ "error": error,
150
+ "args": str(args)[:100] if args else None
151
+ })
152
+ raise
153
+ finally:
154
+ execution_time = time.time() - start_time
155
+ collector.record(
156
+ module_type,
157
+ {
158
+ "function": func.__name__,
159
+ "execution_time": execution_time,
160
+ "success": success,
161
+ "error": error,
162
+ "timestamp": datetime.now().isoformat(),
163
+ "args": str(args)[:100] if args else None
164
+ }
165
+ )
166
+ return wrapper
167
167
  return decorator
vnai/beam/pulse.py CHANGED
@@ -1,79 +1,79 @@
1
- import threading
2
- import time
3
- from datetime import datetime
4
-
5
- class Monitor:
6
- _instance = None
7
- _lock = threading.Lock()
8
-
9
- def __new__(cls):
10
- with cls._lock:
11
- if cls._instance is None:
12
- cls._instance = super(Monitor, cls).__new__(cls)
13
- cls._instance._initialize()
14
- return cls._instance
15
-
16
- def _initialize(self):
17
- self.health_status ="healthy"
18
- self.last_check = time.time()
19
- self.check_interval = 300
20
- self.error_count = 0
21
- self.warning_count = 0
22
- self.status_history = []
23
- self._start_background_check()
24
-
25
- def _start_background_check(self):
26
- def check_health():
27
- while True:
28
- try:
29
- self.check_health()
30
- except:
31
- pass
32
- time.sleep(self.check_interval)
33
- thread = threading.Thread(target=check_health, daemon=True)
34
- thread.start()
35
-
36
- def check_health(self):
37
- from vnai.beam.metrics import collector
38
- from vnai.beam.quota import guardian
39
- self.last_check = time.time()
40
- metrics_summary = collector.get_metrics_summary()
41
- has_errors = metrics_summary.get("error", 0) > 0
42
- resource_usage = guardian.usage()
43
- high_usage = resource_usage > 80
44
- if has_errors and high_usage:
45
- self.health_status ="critical"
46
- self.error_count += 1
47
- elif has_errors or high_usage:
48
- self.health_status ="warning"
49
- self.warning_count += 1
50
- else:
51
- self.health_status ="healthy"
52
- self.status_history.append({
53
- "timestamp": datetime.now().isoformat(),
54
- "status": self.health_status,
55
- "metrics": metrics_summary,
56
- "resource_usage": resource_usage
57
- })
58
- if len(self.status_history) > 10:
59
- self.status_history = self.status_history[-10:]
60
- return self.health_status
61
-
62
- def report(self):
63
- if time.time() - self.last_check > self.check_interval:
64
- self.check_health()
65
- return {
66
- "status": self.health_status,
67
- "last_check": datetime.fromtimestamp(self.last_check).isoformat(),
68
- "error_count": self.error_count,
69
- "warning_count": self.warning_count,
70
- "history": self.status_history[-3:],
71
- }
72
-
73
- def reset(self):
74
- self.health_status ="healthy"
75
- self.error_count = 0
76
- self.warning_count = 0
77
- self.status_history = []
78
- self.last_check = time.time()
1
+ import threading
2
+ import time
3
+ from datetime import datetime
4
+
5
+ class Monitor:
6
+ _instance = None
7
+ _lock = threading.Lock()
8
+
9
+ def __new__(cls):
10
+ with cls._lock:
11
+ if cls._instance is None:
12
+ cls._instance = super(Monitor, cls).__new__(cls)
13
+ cls._instance._initialize()
14
+ return cls._instance
15
+
16
+ def _initialize(self):
17
+ self.health_status ="healthy"
18
+ self.last_check = time.time()
19
+ self.check_interval = 300
20
+ self.error_count = 0
21
+ self.warning_count = 0
22
+ self.status_history = []
23
+ self._start_background_check()
24
+
25
+ def _start_background_check(self):
26
+ def check_health():
27
+ while True:
28
+ try:
29
+ self.check_health()
30
+ except:
31
+ pass
32
+ time.sleep(self.check_interval)
33
+ thread = threading.Thread(target=check_health, daemon=True)
34
+ thread.start()
35
+
36
+ def check_health(self):
37
+ from vnai.beam.metrics import collector
38
+ from vnai.beam.quota import guardian
39
+ self.last_check = time.time()
40
+ metrics_summary = collector.get_metrics_summary()
41
+ has_errors = metrics_summary.get("error", 0) > 0
42
+ resource_usage = guardian.usage()
43
+ high_usage = resource_usage > 80
44
+ if has_errors and high_usage:
45
+ self.health_status ="critical"
46
+ self.error_count += 1
47
+ elif has_errors or high_usage:
48
+ self.health_status ="warning"
49
+ self.warning_count += 1
50
+ else:
51
+ self.health_status ="healthy"
52
+ self.status_history.append({
53
+ "timestamp": datetime.now().isoformat(),
54
+ "status": self.health_status,
55
+ "metrics": metrics_summary,
56
+ "resource_usage": resource_usage
57
+ })
58
+ if len(self.status_history) > 10:
59
+ self.status_history = self.status_history[-10:]
60
+ return self.health_status
61
+
62
+ def report(self):
63
+ if time.time() - self.last_check > self.check_interval:
64
+ self.check_health()
65
+ return {
66
+ "status": self.health_status,
67
+ "last_check": datetime.fromtimestamp(self.last_check).isoformat(),
68
+ "error_count": self.error_count,
69
+ "warning_count": self.warning_count,
70
+ "history": self.status_history[-3:],
71
+ }
72
+
73
+ def reset(self):
74
+ self.health_status ="healthy"
75
+ self.error_count = 0
76
+ self.warning_count = 0
77
+ self.status_history = []
78
+ self.last_check = time.time()
79
79
  monitor = Monitor()