Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Pretty new to Perl so there may be a very obvious solution here. I'm going through a logfile and basically adding certain things into a hash but I keep getting a:

"Can't locate object method "1339384721" via package "serv.int" (perhaps you forgot to load "serv.int"?) at logTest.pl line 37, line 9." I've initialized these variables and everything so I don't see why perl is complaining...

#!/usr/bin/perl -w
use strict;
use warnings;

my $LOGFILE = '/Users/user/Desktop/logTest';
my $downTime = 0;
my $serviceName = 0;
my %downTimeHash = ();

open(LOGFILE, $LOGFILE) or die ("Couldn't open the file.");

foreach my $line (<LOGFILE>) {
chomp($line);


#Checks for 'STATE' lines down
if ($line=~/\s*;DOWN*/ && ($line=~/STATE:\s+([^;]+)/ || $line=~/ALERT:\s+([^;]+)/)) {
#Get time service went down
    if ($line=~/\[(\d*)\]*/) {
        $downTime = $1;
    }
#Get service that went down
    if ($line=~/STATE:\s+([^;]+)/ || $line=~/ALERT:\s+([^;]+)/) {
        $serviceName = $1;
    }   
#Add service and down time to hash
%downTimeHash = ($serviceName->$downTime);
}
}

print "%downTimeHash \n";
share|improve this question
The '1339384721' and 'serv.int' are the two variables I'm adding into the hash. – jackie Jun 19 '12 at 17:44
5  
Did you mean to use $serviceName => $downTime instead of $serviceName -> $downTime ? – mob Jun 19 '12 at 17:51
apparently so :) that fixed it! haha – jackie Jun 19 '12 at 17:51
This question explains the problem, quotes the exact error message, shows the relevant source code, isn't overly long, follows basic kwalitee guidelines, is reasonably well formatted, has a reasonable subject. That already makes it a vastly better question than a dozen others I've seen today: +1 from me. - I wouldn't vote to close as "too localised" just because the mistake was a simple typo. That reason for closing is wrong as the mistake is easy to make, and will reoccur with other people. – daxim Jun 19 '12 at 23:29

closed as too localized by Wooble, gpojd, dgw, raina77ow, Graviton Jun 20 '12 at 2:59

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 0 down vote accepted

got it thanks to @mob, should have used => rather than -> XD

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.