Hi! Thanks for this but I still see the big picture. I have not used Angular
before nor I am a frontend guy. so I have the following questions.
1. Why do we need to change the source code? isn't this configurable or isn't
there a way to pass url as a parameter? If you think it is the easiest way
sure I can change that.
2. How change this let me grab data from my websocket server and display it
with the charts/graphs (simple to graphs we see when we run sql on Zeppelin
notebook)
3. if there is a simple example that would be awesome.
Thanks again!
On Wed, Sep 7, 2016 5:05 AM, [email protected] [email protected]
wrote:
@kant kodali
change zeppelin-web\src\components\baseUrl\baseUrl.service.js like this:
this.getWebsocketUrl = function() { var wsProtocol = location.protocol ===
'https:' ? 'wss:' : 'ws:'; return wsProtocol + ‘//your_ip_address:' +
this.getPort() + skipTrailingSlash(location.pathname) + '/ws'; };
this.getRestApiBase = function() { return location.protocol + '//
your_ip_address:' + this.getPort() + skipTrailingSlash(location.pathname) +
'/api'; };在 2016年9月7日,15:39,kant kodali <[email protected]> 写道:
HI Guys,
I have a server which can handle websocket connections. Now I would like to see
if there is a way to tell apache zeppellin to create to websocket connect to my
server and display the whatever it received?
Thanks,Kant