Posted on April 10, 2008 by Alex
Pass the start date + time and end date + time to the following script. It looks at the alert log file and obtains the no of archive logs that have been applied during media recovery in that time interval.
#!/usr/bin/perl -w
BEGIN { push @INC,”/home/user/TimeDate-1.16/lib/” }
use Date::Parse;
$start=str2time(@ARGV[0]);
chomp(@ARGV[1]);
$end=str2time(@ARGV[1]);
$log=’path to the log file’;
open(ALERTLOGFILE,$log) or die “Not able to [...]
Filed under: oracle | Tagged: log, oracle, perl | Leave a Comment »
Posted on March 30, 2008 by Alex
For commenting the following snippets can be used :
sudo perl -i -p -e ‘ print “#” . ” ” if !/^#/ && /^read-only/; ‘ /etc/my.cnf
sed -i -e ’s/^read-only/#&/g’ cnf
For uncommenting you can use the following snippets :
sudo perl -i -p -e ’s/^#// if /^#/ && /read-only/; ‘ /etc/my.cnf
sed -i -e ’s/^#*read-only/read-only/g’ cnf
Filed under: mysql | Tagged: commet, inline, my.cnf, perl, sed | Leave a Comment »
Posted on July 31, 2007 by Alex
If there are hourly feeds that are being generated based on time, the we can use the following snippet to go back in time for 2 hours and generate the filename based on requirement.
$timenow=time()-(2*60*60); // Gives the time 2 hours before.
$consfeed= strftime “data_%Y_%m_%d_%H_00_00.xml”, localtime($timenow); // Constructs the filename to be looked for 2 [...]
Filed under: monitoring | Tagged: feed, perl | Leave a Comment »
Posted on July 22, 2007 by Alex
Logfiles in older unix systems and monitoring systems just log the unix timestamp as the first field in the enteries. When we try to pull out data for a particular date, then it becomes tricky. The following code snippet will help pulling out data for a particular date quite easily
cat <logfile> | perl -lane ‘$_=$F[0]; [...]
Filed under: scripts | Tagged: log, perl, timestamp | Leave a Comment »