Property changes on: trunk
___________________________________________________________________
Modified: svn:mergeinfo
- /branches/DEV-capside/release-3.9.0:6365-6370
/branches/DEV-extra-notification-data:6734-6746
/branches/DEV-odw-calculations:9016-9160
/branches/DEV-restapi-monitoringservers:9778
/branches/DEV-snmp-multi:7324-7376
/branches/US187:9403-9479
/branches/US198b:8875-8994
/branches/US310:9851-9873
/branches/US539:12178-12182
/branches/enterprise/BRAN-3.14:6874,6882,6956
/branches/enterprise/DEV-professional:6494-8475,8477-8478,8486,8490,8492,8494,8499-8500,8515,8518-8519,8524,8527-8529,8531-8532,8536,8538,8540-8544,8547-8552,8554,8557,8600-8601,8637,8749,8772,8897,8917,8944-8945,8947,8950-8952,8967,8969,8979,8982,8987,8998,9006,9008,9011,9013,9026,9033-9036,9038,9040,9042,9044,9048,9050-9053,9062,9064-9065,9069,9078,9081,9088,9096,9099-9101,9103,9105,9115,9118,9347,9353-9354,9411,9432,9445,9486,9538-9550,9569-9571,9620,9635,9637-9638,9645-9647,9693,9699,9721,9814,9825,9857,9879,9881,9939,10002,10029,10038-10041,10070,10086,10093,10345,10347,10388,10407,10481,10549,10560-10562,10565,10568,10571,10577,10932,11025,11035,11360-11612,11798-11799,12189,12322,12355,12401-12406,12428
/branches/nagvis-iframe:9764-9786
/branches/opsview2runtime:10960-11258
/branches/opsview2runtime_xs:11279-11303
/branches/us168:8759,8762-8763,8766-8768,8770,8774-8777,8794,8798-8799,8801-8803,8821-8822,8834,8837-8838,8932,8937,8947,8969,8977,8981,9004,9007,9009-9010,9012,9024,9049
/commercial/branches/BRAN-4.2:10944,11017
/commercial/branches/BRAN-4.3:12423-12426
/commercial/branches/US306-slaves:9804-9823
/commercial/branches/US307-network-map:9685-9837
+ /branches/DEV-capside/release-3.9.0:6365-6370
/branches/DEV-extra-notification-data:6734-6746
/branches/DEV-odw-calculations:9016-9160
/branches/DEV-restapi-monitoringservers:9778
/branches/DEV-snmp-multi:7324-7376
/branches/US187:9403-9479
/branches/US198b:8875-8994
/branches/US310:9851-9873
/branches/US539:12178-12182
/branches/enterprise/BRAN-3.14:6874,6882,6956
/branches/enterprise/DEV-professional:6494-8475,8477-8478,8486,8490,8492,8494,8499-8500,8515,8518-8519,8524,8527-8529,8531-8532,8536,8538,8540-8544,8547-8552,8554,8557,8600-8601,8637,8749,8772,8897,8917,8944-8945,8947,8950-8952,8967,8969,8979,8982,8987,8998,9006,9008,9011,9013,9026,9033-9036,9038,9040,9042,9044,9048,9050-9053,9062,9064-9065,9069,9078,9081,9088,9096,9099-9101,9103,9105,9115,9118,9347,9353-9354,9411,9432,9445,9486,9538-9550,9569-9571,9620,9635,9637-9638,9645-9647,9693,9699,9721,9814,9825,9857,9879,9881,9939,10002,10029,10038-10041,10070,10086,10093,10345,10347,10388,10407,10481,10549,10560-10562,10565,10568,10571,10577,10932,11025,11035,11360-11612,11798-11799,12189,12322,12355,12401-12406,12428,12539-12540,12544
/branches/nagvis-iframe:9764-9786
/branches/opsview2runtime:10960-11258
/branches/opsview2runtime_xs:11279-11303
/branches/us168:8759,8762-8763,8766-8768,8770,8774-8777,8794,8798-8799,8801-8803,8821-8822,8834,8837-8838,8932,8937,8947,8969,8977,8981,9004,9007,9009-9010,9012,9024,9049
/commercial/branches/BRAN-4.2:10944,11017
/commercial/branches/BRAN-4.3:12423-12426
/commercial/branches/US306-slaves:9804-9823
/commercial/branches/US307-network-map:9685-9837
Modified: trunk/opsview-core/bin/import_ndologsd
===================================================================
--- trunk/opsview-core/bin/import_ndologsd 2013-06-14 14:38:43 UTC (rev 12544)
+++ trunk/opsview-core/bin/import_ndologsd 2013-06-14 14:42:03 UTC (rev 12545)
@@ -40,8 +40,9 @@
use Time::HiRes qw(gettimeofday);
use Opsview::Utils::NDOLogsImporter;
-my $MAX_RUN_TIME = 3600 * 24; # once a day
-my $REAL_PATH = abs_path($0);
+my $MAX_RUN_TIME = 3600 * 24; # once a day
+my $MAX_FILE_SIZE = 500 * 1024 * 1024; # max size of file to be processed
+my $REAL_PATH = abs_path($0);
# close-on-exec
$^F = 2;
@@ -123,9 +124,9 @@
if ( $dir_update != $last_update ) {
opendir( IMPORT_DIR, "." ) or $logger->logdie( "Cannot open dir: $!" );
my @files =
- sort ( grep { !/^\.\.?\z/ && -f "./$_" } readdir IMPORT_DIR );
+ grep { !/^\.\.?\z/ && -f "./$_" && !/.ignored$/ } readdir IMPORT_DIR;
closedir IMPORT_DIR;
- foreach my $file (@files) {
+ foreach my $file ( sort @files ) {
last MAINLOOP if $break;
my $start = gettimeofday();
my $file_size = -s $file;
@@ -134,6 +135,11 @@
unlink $file;
next;
}
+ if ( $file_size > $MAX_FILE_SIZE ) {
+ $logger->error( "Ignoring $file bigger then $MAX_FILE_SIZE" );
+ rename( $file, "$file.ignored" );
+ next;
+ }
# Send the log to NDO. Blocks if connection refuses until either it can, or $break is set
@@ -160,6 +166,7 @@
}
else {
$logger->warn( "Failed to import $file" );
+ rename( $file, "$file.ignored" );
}
$found = 1;
last MAINLOOP if $break;