video+logs
See original GitHub issuei did a little POC locally to test if showing logs alongside of the video is possible without much change. my findings is that it would only require a minor change in selenoid for the websocket stream logs https://github.com/aerokube/selenoid/blob/master/selenoid.go#L664
wsconn.PayloadType = websocket.TextFrame
fc, err := ioutil.ReadFile(path.Clean(logOutputDir + "/" + sid + ".log"))
if err != nil {
  log.Printf("[%d] [LOG_NOT_FOUND] [%s]", requestId, err)
	return
}
websocket.Message.Send(wsconn, string(fc))
and then add the Log component in the video ui. to get an output like this:

keep in mind this is just a proof of concept so is not pretty 😛 i wanted to check if this is something the project wants to support moving forward.
Thanks
Issue Analytics
- State:
 - Created 3 years ago
 - Comments:8 (7 by maintainers)
 
Top Results From Across the Web
Videolog - PennDOT
This web site is for informational purposes only and may be viewed by anyone. The VideoLog information is provided "as is" without warranty...
Read more >Vlog - Wikipedia
A video blog or video log, sometimes shortened to vlog (/vlɒɡ/), is a form of blog for which the medium is video. ......
Read more >#videologs - YouTube
Story @ 39.56 | SUPERBstory Daily Morning ritual 30th Dec VLOG Video Blog | Dr. Sachin SUPERBHUMANS · SUPERBHUMANS. SUPERBHUMANS.
Read more >Mapillary (Video Logs) - Road Imagery Viewer
Mapillary (Video Logs) - Road Imagery Viewer · View current and historic (up to 5 years) synchronized right-of-way images on VTrans official Linear...
Read more >#videologs hashtag on Instagram • Photos and Videos
470 Posts - See Instagram photos and videos from 'videologs' hashtag. ... RDA Video Logs in my opinion are a very key-point important...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

dont see the reason as well - isn’t better to just download log and open that in a full terminal, where you can search, edit and expand full screen?
I wouldn’t go in this direction, but thx for the PoC 😃 was interesting
@vania-pooh the log component in the ui uses the websocket to show the xtern like ui, I’m not sure how much work would be to build a new component that uses the http endpoint, but it should be possible right @lanwen ?