Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Scan logs for errors in the last hour only. Post 302813261 by jimbojames on Sunday 26th of May 2013 11:51:20 PM
Old 05-27-2013
Sorry Agama, I guess it would make things easier!

Yes, the logs are date/timestamped, here is an example:

Quote:
Code:
May 27 13:42:56 rxxx-uxxx user:err|error WebSphere Broker v60011[1323228]: (BRK_XXXXXXXX.EXG_XXXX)[10281]BIP2498E: (xxx.xxxx.SF_Distribution_Module.Main, 26.20) : An error occurred whilst navigating to the '3'th path element of the field reference at the given location. : BRK_XXXXXXXX.7b2d5176-2f01-0000-0080-9228e47fc174: /build/S600_P/src/DataFlowEngine/ImbRdl/ImbRdlFieldRef.cpp: 1812: SqlFieldReference::navigateAbsoluteToFirst: ComIbmComputeNode: xxx/xxxx/MFL_HTTPRouter#FCMComposite_1_8.xxx/xxxx/SF_Distribution#FCMComposite_1_2
May 27 13:42:56  rxxx-uxxx user:err|error WebSphere Broker v60011[1323228]: (BRK_XXXXXXXX.EXG_XXXX))[10281]BIP5009E: XML Parsing Errors have occurred. : BRK_XXXXXXXX.7b2d5176-2f01-0000-0080-9228e47fc174: /build/S600_P/src/MTI/MTIforBroker/GenXmlParser2/XmlImbParser.cpp: 642: XmlImbParser::parseRightSibling: :
May 27 13:42:56  rxxx-uxxx user:err|error WebSphere Broker v60011[1323228]: (BRK_XXXXXXXX.EXG_XXXX))[10281]BIP5004E: XML parsing error (The value of the attribute 'xsi' is invalid. Prefixed namespace bindings may not be empty. ) encountered on line 1 column 200 while parsing element XMLNS. : BRK_XXXXXXXX.7b2d5176-2f01-0000-0080-9228e47fc174: /build/S600_P/src/MTI/MTIforBroker/GenXmlParser2/XmlBrokerAsgardParser.cpp: 942: XmlBrokerAsgardParser::error: :

 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

an hour less in 24 hour system

My program: __________________________________ #!/bin/ksh DAY=`date +%y%m%d` H=`date +%H` M=`date +%M` day=`date +%m/%d/%y` let h=$H-1 echo DAY $DAY echo H $H echo M $M echo day $day echo h $h _____________________________________ My result: (3 Replies)
Discussion started by: bobo
3 Replies

2. Shell Programming and Scripting

Grep string from logs of last 1 hour on files of 2 different servers and calculate count

Hi, I am trying to grep a particular string from the files of 2 different servers without copying and calculate the total count of its occurence on both files. File structure is same on both servers and for reference as follows: 27-Aug-2010... (4 Replies)
Discussion started by: poweroflinux
4 Replies

3. UNIX for Dummies Questions & Answers

Rotate logs every 1 hour

Hello All, I am learning unix and basically I want to rotate one of my application logs every 1 hour. I need to rotate that file every one hour. I looked in the forums and googled.. but couldn;t get proper information. Requesting you all to kindly guide me. Our application is running on... (4 Replies)
Discussion started by: arunpvp
4 Replies

4. Shell Programming and Scripting

Scan log file for errors

Hi everyone. I am still new to UNIX, and am having trouble figuring out how to create a script to scan a log file to look for errors based on a string. We run AIX 5.3, and would like the ability to report all the instances of WebSphere Broker Execution groups crashing. This script would... (8 Replies)
Discussion started by: jimbojames
8 Replies

5. Shell Programming and Scripting

Count number of errors within logs for last 6 months

I have directory /test/logs which has multiple logs: audit.log audit.log.1 audit.log.2 audit.log.3 audit.log.4 audit.log.5 audit.log is current log file and audit.log.X are archive log files. I need to search within these log files and count word "error-5" logged within last 6 months... (4 Replies)
Discussion started by: djanu
4 Replies

6. Red Hat

How to scan hard errors in linux?

how to scan hard errors in linux Thanks&Regards, R.PRAVEEN (1 Reply)
Discussion started by: praveenvikram24
1 Replies

7. Shell Programming and Scripting

How to convert 24 hour time to 12 hour timing?

Hi friends, I want to convert 24 hour timing to 12 hour please help me... my data file looks like this.. 13-Nov-2011 13:27:36 15.32044 72.68502 13-Nov-2011 12:08:31 15.31291 72.69807 16-Nov-2011 01:16:54 15.30844 72.74028 15-Nov-2011 20:09:25 15.35096 ... (13 Replies)
Discussion started by: nex_asp
13 Replies

8. Shell Programming and Scripting

How to grep logs for errors and receive specific additional lines?

Hi there, I have a script that I've used to find errors in my Minecraft Server logs. But I'd like to refine that script to be more useful. Here is the script: grep -n "SEVERE" /minecraft/server.log | awk -F":" '{print $1-2 "," $1+10 "p"}' | xargs -t -i sed -n {} /minecraft/server.log >>... (15 Replies)
Discussion started by: nbsparks
15 Replies

9. Shell Programming and Scripting

Script to grep logs for Errors

Hi Guys, I want to write a script which can grep the logs (server.log) from a file for Error String and output to a other file. Problems: How to know about the errors only between the current restart and not in previous as server.log has earlier restarts also? thanks for the help! Much... (5 Replies)
Discussion started by: ankur328
5 Replies
QXmlSimpleReader(3qt)													     QXmlSimpleReader(3qt)

NAME
QXmlSimpleReader - Implementation of a simple XML reader (parser) SYNOPSIS
All the functions in this class are reentrant when Qt is built with thread support.</p> #include <qxml.h> Inherits QXmlReader. Public Members QXmlSimpleReader () virtual ~QXmlSimpleReader () virtual void setFeature ( const QString & name, bool value ) virtual bool parse ( const QXmlInputSource * input, bool incremental ) virtual bool parseContinue () DESCRIPTION
The QXmlSimpleReader class provides an implementation of a simple XML reader (parser). This XML reader is sufficient for simple parsing tasks. The reader: provides a well-formed parser; does not parse any external entities; can do namespace processing. Documents are parsed with a call to parse(). See also XML. MEMBER FUNCTION DOCUMENTATION
QXmlSimpleReader::QXmlSimpleReader () Constructs a simple XML reader with the following feature settings: <center>.nf </center> More information about features can be found in the Qt SAX2 overview. See also setFeature(). QXmlSimpleReader::~QXmlSimpleReader () [virtual] Destroys the simple XML reader. bool QXmlSimpleReader::parse ( const QXmlInputSource * input, bool incremental ) [virtual] Reads an XML document from input and parses it. Returns FALSE if the parsing detects an error; otherwise returns TRUE. If incremental is TRUE, the parser does not return FALSE when it reaches the end of the input without reaching the end of the XML file. Instead it stores the state of the parser so that parsing can be continued at a later stage when more data is available. You can use the function parseContinue() to continue with parsing. This class stores a pointer to the input source input and the parseContinue() function tries to read from that input souce. This means that you should not delete the input source input until you've finished your calls to parseContinue(). If you call this function with incremental TRUE whilst an incremental parse is in progress a new parsing session will be started and the previous session lost. If incremental is FALSE, this function behaves like the normal parse function, i.e. it returns FALSE when the end of input is reached without reaching the end of the XML file and the parsing cannot be continued. See also parseContinue() and QSocket. Examples: bool QXmlSimpleReader::parseContinue () [virtual] Continues incremental parsing; this function reads the input from the QXmlInputSource that was specified with the last parse() command. To use this function, you must have called parse() with the incremental argument set to TRUE. Returns FALSE if a parsing error occurs; otherwise returns TRUE. If the input source returns an empty string for the function QXmlInputSource::data(), then this means that the end of the XML file has been reached; this is quite important, especially if you want to use the reader to parse more than one XML file. The case of the end of the XML file being reached without having finished parsing is not considered to be an error: you can continue parsing at a later stage by calling this function again when there is more data available to parse. This function assumes that the end of the XML document is reached if the QXmlInputSource::next() function returns QXmlInputSource::EndOfDocument. If the parser has not finished parsing when it encounters this symbol, it is an error and FALSE is returned. See also parse() and QXmlInputSource::next(). void QXmlSimpleReader::setFeature ( const QString & name, bool value ) [virtual] Sets the state of the feature name to value: If the feature is not recognized, it is ignored. The following features are supported: <center>.nf </center> ** $Id: qt/tagreader.cpp 3.3.8 edited Jan 11 14:46 $ reader.setFeature( "http://xml.org/sax/features/namespace-prefixes", TRUE ); (Code taken from xml/tagreader-with-features/tagreader.cpp) See also feature() and hasFeature(). Example: xml/tagreader-with-features/tagreader.cpp. Reimplemented from QXmlReader. SEE ALSO
http://doc.trolltech.com/qxmlsimplereader.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qxmlsimplereader.3qt) and the Qt version (3.3.8). Trolltech AS 2 February 2007 QXmlSimpleReader(3qt)
All times are GMT -4. The time now is 09:13 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy