Re: Python log parser

2013-04-05 Thread darnold
i know literally nothing about syslogs, but a google search for "python syslog parser" shows that some people have had success using the pyparsing module: http://www.j-schmitz.net/blog/how-to-parse-a-syslog-logfile-in-python https://gist.github.com/leandrosilva/3651640 hth, Don -- http://mail.py

Re: Python log parser

2013-04-05 Thread Nac Temha
On Fri, Apr 5, 2013 at 4:31 PM, Grant Edwards wrote: > On 2013-04-05, rh wrote: > > On Fri, 5 Apr 2013 02:17:55 +0300 Nac Temha > wrote: > > > >> Hi, I'm working to parse log files. But I need to help this matter. I > >> want to parse syslog(wihch program is running, timestamp,host,etc) of > >>

Re: Python log parser

2013-04-05 Thread Grant Edwards
On 2013-04-05, Dave Angel wrote: > On 04/05/2013 07:20 AM, Nac Temha wrote: >> I could not do using syslog module. > What could you not do using syslog? Parse syslog files, presumably -- that's what he asked about. > What did you try, and what exception did it throw? I'm rather at a loss as t

Re: Python log parser

2013-04-05 Thread Grant Edwards
On 2013-04-05, rh wrote: > On Fri, 5 Apr 2013 02:17:55 +0300 Nac Temha wrote: > >> Hi, I'm working to parse log files. But I need to help this matter. I >> want to parse syslog(wihch program is running, timestamp,host,etc) of >> system I could not find any module of python for this. Or do you hav

Re: Python log parser

2013-04-05 Thread Dave Angel
On 04/05/2013 07:20 AM, Nac Temha wrote: I could not do using syslog module. Please don't top-post. It messes up the history order entirely. What could you not do using syslog? What did you try, and what exception did it throw? Show your code, and either say precisely in what way it didn

Re: Python log parser

2013-04-05 Thread Nac Temha
I could not do using syslog module. On Fri, Apr 5, 2013 at 4:00 AM, rh wrote: > pydoc syslog > > That intenough? > > On Fri, 5 Apr 2013 02:17:55 +0300 > Nac Temha wrote: > > > Hi, I'm working to parse log files. But I need to help this matter. I > > want to parse syslog(wihch program is runnin