soket url

This commit is contained in:
Anna Sudnitsina 2018-03-26 22:55:37 +03:00
parent 76e2365013
commit c685cd72fc
3 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,4 @@
{
{
"zookeeper" : "10.8.0.26:2181",
"api": "http://127.0.0.1:9076/v1",
"ws": "ws://py.difrex.ru/socket"
"api": "http://127.0.0.1:9076/v1"
}

View File

@ -50,11 +50,11 @@ class MainHandler(tornado.web.RequestHandler):
logging.info(tornado.escape.xhtml_escape(self.current_user))
logging.info('123')
user_id = self.get_secure_cookie("user")
ws = config("ws")
# ws = config("ws")
try: metrics = json.loads(action('metrics', 'get'))
except ValueError: metrics = {}
my_status = zk_fetch("/rbmd/log/health") #action('status', 'get')
dct = {'ws': ws, 'metrics': metrics, 'status': my_status}
dct = {'metrics': metrics, 'status': my_status}
self.render("index.html", **dct)
def get_current_user(self):

View File

@ -84,7 +84,8 @@
</div>
</body>
<script>
var ws = new WebSocket('{{escape(ws)}}');
var url = "ws://" + location.host + "/socket";
var ws = new WebSocket(url);
console.log(ws);
var a, selected_node, deadNode, node2;
ws.onopen = function() {ws.send(""); };