Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder7.xlned.com!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'open-source': 0.04; 'syntax': 0.04; 'json': 0.07; 'linux,': 0.07; 'suggestions,': 0.07; 'escape': 0.09; 'read-only': 0.09; 'suggestions.': 0.09; 'python': 0.11; 'jan': 0.12; '1:13': 0.16; 'class;': 0.16; 'logger': 0.16; 'mode,': 0.16; 'subject:log': 0.16; 'wing': 0.16; 'wrote:': 0.18; 'app': 0.19; 'example': 0.22; 'instead.': 0.24; 'skip:% 10': 0.24; 'java': 0.24; 'file.': 0.24; '(or': 0.24; 'extension': 0.26; 'possibly': 0.26; 'query': 0.26; 'header:In- Reply-To:1': 0.27; 'to:2**1': 0.27; 'am,': 0.29; 'unix': 0.29; 'message-id:@mail.gmail.com': 0.30; 'url:mailman': 0.30; 'overhead': 0.31; 'ray': 0.31; 'interface': 0.32; 'text': 0.33; 'url:python': 0.33; 'fri,': 0.33; "i'd": 0.34; 'editor': 0.35; 'received:google.com': 0.35; 'there': 0.35; 'view,': 0.36; 'url:listinfo': 0.36; 'useful': 0.36; 'thanks': 0.36; 'subject:?': 0.36; 'url:org': 0.36; 'easily': 0.37; 'others.': 0.38; 'whatever': 0.38; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'url:mail': 0.40; 'course': 0.61; 'further': 0.61; 'more': 0.64; 'here': 0.66; 'of:': 0.68; 'william': 0.81; '2014,': 0.84; 'alec': 0.84; 'subject:source': 0.84; 'viewers': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=dTHduWctBkR7rU0Byl2/jTFGZfLeWcrI0g8YQal7scc=; b=bto1WLXxa6t/pGgO13qYHoV2YaOAzp20drJwZczNvZukWVK85csGglcsR8zVThVf+O pVMvi/5ohtwmhVTOejUb9gf1KRjda1SnBHiRlEYh0owePuphs+2ANqu0boEHFy2P5AXD 9WuhMeHdduoNPuiulgodWiUmzBvmEypZKOZj1d2xaYVnUOH/mMAgkK+56y4ppbuTBi0U vAcW2QY2mznSCE5/dAJi89WqCTZT4PxMINoxhZFc324yvWIje372zmXWQLG5EIBsIGi+ AFKLY0sA6/JH/MjM+X15WlA7/Q52mGv3jOuhVYhjV8i+6u2GqZVDe6NAuDbcdxbHAr94 zh7w== MIME-Version: 1.0 X-Received: by 10.224.128.4 with SMTP id i4mr154957226qas.63.1388809459904; Fri, 03 Jan 2014 20:24:19 -0800 (PST) In-Reply-To: <2F5C38F8-EC06-453F-8461-A0FF72519170@mac.com> References: <2F5C38F8-EC06-453F-8461-A0FF72519170@mac.com> Date: Sat, 4 Jan 2014 15:24:19 +1100 Subject: Re: Suggest an open-source log analyser? From: Alec Taylor To: William Ray Wing , "comp.lang.python" Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 30 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1388809462 news.xs4all.nl 2861 [2001:888:2000:d::a6]:58563 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:63105 Web interface (and/or SQL-like query interface); is useful for drilling down and rolling up multiparametric analyses. Currently looking at logstash, kibana, graylog2 and a few others. Might end up writing my own to escape the Java dependency. Would welcome further suggestions. On Fri, Jan 3, 2014 at 1:13 AM, William Ray Wing wrote: > On Jan 2, 2014, at 12:40 AM, Alec Taylor wrote: > >> I use the Python logger class; with the example syntax of: >> Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') >> >> Can of course easily use e.g.: a JSON syntax here instead. >> >> Are there any open-source log viewers (e.g.: with a web-interface) >> that you'd recommend; for drilling down into my logs? >> >> Thanks for your suggestions, >> >> Alec Taylor >> -- >> https://mail.python.org/mailman/listinfo/python-list > > Why web interface? That's a ton of overhead just to look at a text file. > If you are on UNIX or Linux, I'd just use my favorite editor (or possibly View, which is vi in read-only mode, or More or Less). > If you give them the extension .log you can use whatever app you use to look at console logs. > > -Bill