marc esher
marc esher

Reputation: 4921

Is there a web-based log-tailing application?

I have been using BareTail for low-footprint log reading, and it works wonderfully. In particular, I like that it can consume very large large files, detect changes to those files, all without consuming much memory at all.

I'd like to know if there are applications out there -- flash, java applet, etc -- that I could use in a web page to mimic this functionality in a program I'm writing

Upvotes: 1

Views: 670

Answers (3)

Dave Ferguson
Dave Ferguson

Reputation: 773

This now possible thanks to ColdFusion 10 and Web sockets.

Checkout this blog post for info. http://blog.dkferguson.com/index.cfm/2012/3/13/Websockets-demo-Log-Watcher

:)

Upvotes: 1

Juan Ignacio Barisich
Juan Ignacio Barisich

Reputation: 2160

Check vsConsole http://www.vamonossoftware.com/vsconsole

Upvotes: 1

Jonas Elfström
Jonas Elfström

Reputation: 31428

You can't do this client-side only, the tailing of the logfile has to be done on the server.

Here's an example in Python that's using AJAX.

Upvotes: 2

Related Questions