-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrpc_status_server.py
202 lines (162 loc) · 7.38 KB
/
grpc_status_server.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
import os
from flask import Flask, render_template_string
import grpc
import concurrent.futures
import time
from grpc_reflection.v1alpha import reflection_pb2, reflection_pb2_grpc
import json
from web3 import Web3
from collections import defaultdict
def get_addresses():
web3 = Web3(Web3.HTTPProvider(os.environ["WEB3_PROVIDER_URI"]))
# Check if connected to Ethereum network
if not web3.is_connected():
raise ConnectionError("Failed to connect to Ethereum network")
# Contract address
contract_address = "0x390D339A6C0Aa432876B5C898b16287Cacde2A0A"
with open("Nodes.json", "r") as abi_file:
contract = json.load(abi_file)
contract_abi = contract["abi"]
# Load the contract
contract = web3.eth.contract(address=contract_address, abi=contract_abi)
# Example: Call a function from the contract (Replace 'functionName' with actual function)
result = contract.functions.healthyNodes().call()
return [node[1][1].replace("https://", "") + ":443" for node in result]
addresses = {}
errors = defaultdict(str)
app = Flask(__name__)
def check_grpc_status(address):
"""
Function to check if the gRPC endpoint is reachable
by establishing a secure gRPC connection and calling the reflection API.
"""
try:
# Create a secure gRPC channel
channel = grpc.secure_channel(address, grpc.ssl_channel_credentials())
# Create a stub for reflection API
stub = reflection_pb2_grpc.ServerReflectionStub(channel)
request = reflection_pb2.ServerReflectionRequest(list_services="")
# Call the reflection API
response_iterator = stub.ServerReflectionInfo(iter([request]))
services = [resp.list_services_response for resp in response_iterator]
# If response is received, mark as reachable
if services:
errors[address] = "" # Clear any previous errors
return address, "✅ Reachable"
else:
errors[address] = "No response from server"
return address, "❌ No Response"
except grpc.RpcError as e:
error_message = f"gRPC Error: {e.code().name} - {str(e.details())}"
errors[address] = error_message
return address, f"❌ Error: {e.code().name}"
except Exception as e:
error_message = f"Exception: {str(e)}"
errors[address] = error_message
return address, "⚠️ Exception"
def update_status():
"""
Runs gRPC checks in parallel for all addresses using ThreadPoolExecutor
and updates the list of addresses dynamically.
"""
global addresses, errors
while True:
try:
new_addresses = set(get_addresses()) # Fetch the latest node addresses
# Identify added and removed addresses
current_addresses = set(addresses.keys())
added_addresses = new_addresses - current_addresses
removed_addresses = current_addresses - new_addresses
# Remove old addresses
for addr in removed_addresses:
addresses.pop(addr, None)
errors.pop(addr, None)
# Add new addresses with a default status
for addr in added_addresses:
addresses[addr] = "Checking..."
with concurrent.futures.ThreadPoolExecutor(max_workers=10) as executor:
future_to_address = {executor.submit(check_grpc_status, addr): addr for addr in addresses.keys()}
for future in concurrent.futures.as_completed(future_to_address):
address, status = future.result()
addresses[address] = status # Update the dictionary with the new status
except Exception as e:
print(f"Error updating status: {e}") # Log errors if any
time.sleep(10) # Refresh every 10 seconds
# Start gRPC checking in a separate thread
import threading
threading.Thread(target=update_status, daemon=True).start()
@app.route("/data")
def data():
return {"addresses": addresses, "errors": errors}
@app.route("/")
def index():
return render_template_string("""
<html>
<head>
<title>XMTP Node Status</title>
<style>
body { font-family: Arial, sans-serif; text-align: center; padding: 20px; background-color: #f9f9f9; }
table { margin: auto; border-collapse: collapse; width: 70%; background: white; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); }
th, td { padding: 12px; border: 1px solid #ddd; text-align: left; }
th { background-color: #007bff; color: white; cursor: pointer; }
.error-tooltip {
text-decoration: underline;
cursor: help;
color: red;
}
</style>
<script>
function refreshData() {
fetch('/data') // Fetch updated data from the server
.then(response => response.json())
.then(data => {
let tableBody = document.getElementById("status-table-body");
tableBody.innerHTML = ""; // Clear existing rows
Object.keys(data.addresses).sort().forEach(addr => {
let row = tableBody.insertRow();
let cell1 = row.insertCell(0);
let cell2 = row.insertCell(1);
cell1.textContent = addr;
if (data.addresses[addr].includes("Error") || data.addresses[addr].includes("Exception")) {
cell2.innerHTML = `<span class="error-tooltip" title="${data.errors[addr]}">${data.addresses[addr]}</span>`;
} else {
cell2.textContent = data.addresses[addr];
}
});
})
.catch(error => console.error("Error fetching data:", error));
}
setInterval(refreshData, 1000); // Refresh every second without page reload
window.onload = refreshData; // Load data on page load
</script>
</head>
<body>
<h1>XMTP Node Status</h1>
<p>Data refreshes every second</p>
<table>
<thead>
<tr>
<th>Node Address</th>
<th>Status</th>
</tr>
</thead>
<tbody id="status-table-body">
{% for addr, status in addresses.items() %}
<tr>
<td>{{ addr }}</td>
<td>
{% if "Error" in status or "Exception" in status %}
<span class="error-tooltip" title="{{ errors[addr] }}">{{ status }}</span>
{% else %}
{{ status }}
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>
""", addresses=addresses, errors=errors)
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000, debug=True) # Accessible from local network