Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Ruby > Error when running script

Reply
Thread Tools

Error when running script

 
 
Brad Winborg
Guest
Posts: n/a
 
      03-01-2009
This is the script, it's intent is to read all Error logs.txt files in a
directory or just the text files that are listed. Find all the lines
that contain the word "error" and all the lines that contain the word
"warning" display a count of each word. Additionally it should create
report that tells how many times the two words appear every ten min, for
the duration of the error logs.

my_path = "D:\My Documents\\Replicon\\log_file_20090221_041817.txt"

warning = 0
error = 0

d = Dir.new(my_path)
d.each do |fl|
unless fl == '.' or fl == '..' then
puts my_path + fl
File.open(my_path + fl, "r").each do |line|
if line =~ /error/ then
error += 1
elsif line =~ /warning/ then
warning += 1
end
end

end
end
puts warning.to_s
puts error.to_s


Here is the errors I receive when I run it.

Not a directory - D:\My Documents\Replicon\log_file_20090221_041817.txt\
D:/My Documents/Replicon/ErrorCount.rb:6:in `initialize'
Press ENTER to close the window...

Directory Path
D:\My Documents\Replicon
I was going to add an attachment to show that the directory really exits
and that the file is in that directory, but it was to large.

If anyone has any ideas as to why it is not working I be very grateful,
as I am new to ruby code in general.
--
Posted via http://www.ruby-forum.com/.

 
Reply With Quote
 
 
 
 
Tim Hunter
Guest
Posts: n/a
 
      03-01-2009
Brad Winborg wrote:
> This is the script, it's intent is to read all Error logs.txt files in a
> directory or just the text files that are listed. Find all the lines
> that contain the word "error" and all the lines that contain the word
> "warning" display a count of each word. Additionally it should create
> report that tells how many times the two words appear every ten min, for
> the duration of the error logs.
>
> my_path = "D:\My Documents\\Replicon\\log_file_20090221_041817.txt"
>
> warning = 0
> error = 0
>
> d = Dir.new(my_path)
> d.each do |fl|
> unless fl == '.' or fl == '..' then
> puts my_path + fl
> File.open(my_path + fl, "r").each do |line|
> if line =~ /error/ then
> error += 1
> elsif line =~ /warning/ then
> warning += 1
> end
> end
>
> end
> end
> puts warning.to_s
> puts error.to_s
>
>
> Here is the errors I receive when I run it.
>
> Not a directory - D:\My Documents\Replicon\log_file_20090221_041817.txt\
> D:/My Documents/Replicon/ErrorCount.rb:6:in `initialize'
> Press ENTER to close the window...
>
> Directory Path
> D:\My Documents\Replicon
> I was going to add an attachment to show that the directory really exits
> and that the file is in that directory, but it was to large.
>
> If anyone has any ideas as to why it is not working I be very grateful,
> as I am new to ruby code in general.


Look at the error message. You're asking Dir.new to open the directory
"D:\My Documents\Replicon\log_file_20090221_041817.txt".
I think the directory name is actually "D:\My Documents\Replicon" and
"log_file_20090221_041817.txt" is a file within that directory.

--
RMagick: http://rmagick.rubyforge.org/

 
Reply With Quote
 
 
 
 
Tim Greer
Guest
Posts: n/a
 
      03-01-2009
Brad Winborg wrote:

> This is the script, it's intent is to read all Error logs.txt files in
> a directory or just the text files that are listed. Find all the lines
> that contain the word "error" and all the lines that contain the word
> "warning" display a count of each word. Additionally it should create
> report that tells how many times the two words appear every ten min,
> for the duration of the error logs.
>
> my_path = "D:\My Documents\\Replicon\\log_file_20090221_041817.txt"
>
> warning = 0
> error = 0
>
> d = Dir.new(my_path)
> d.each do |fl|
> unless fl == '.' or fl == '..' then
> puts my_path + fl
> File.open(my_path + fl, "r").each do |line|
> if line =~ /error/ then
> error += 1
> elsif line =~ /warning/ then
> warning += 1
> end
> end
>
> end
> end
> puts warning.to_s
> puts error.to_s
>
>
> Here is the errors I receive when I run it.
>
> Not a directory - D:\My
> Documents\Replicon\log_file_20090221_041817.txt\ D:/My
> Documents/Replicon/ErrorCount.rb:6:in `initialize' Press ENTER to
> close the window...
>


Looks like you tried to open a file as a directory:

D:\My Documents\Replicon\log_file_20090221_041817.txt

The path looks to be:

D:\My Documents\Replicon\

And the file in that path:

log_file_20090221_041817.txt


--
Tim Greer, CEO/Founder/CTO, BurlyHost.com, Inc.
Shared Hosting, Reseller Hosting, Dedicated & Semi-Dedicated servers
and Custom Hosting. 24/7 support, 30 day guarantee, secure servers.
Industry's most experienced staff! -- Web Hosting With Muscle!
 
Reply With Quote
 
Brad Winborg
Guest
Posts: n/a
 
      03-01-2009
Tim Hunter wrote:
> Brad Winborg wrote:
>> error = 0
>> end
>> Not a directory - D:\My Documents\Replicon\log_file_20090221_041817.txt\
>> D:/My Documents/Replicon/ErrorCount.rb:6:in `initialize'
>> Press ENTER to close the window...
>>
>> Directory Path
>> D:\My Documents\Replicon
>> I was going to add an attachment to show that the directory really exits
>> and that the file is in that directory, but it was to large.
>>
>> If anyone has any ideas as to why it is not working I be very grateful,
>> as I am new to ruby code in general.

>
> Look at the error message. You're asking Dir.new to open the directory
> "D:\My Documents\Replicon\log_file_20090221_041817.txt".
> I think the directory name is actually "D:\My Documents\Replicon" and
> "log_file_20090221_041817.txt" is a file within that directory.


Thank you that did help, but I still have a problem.

my_path = "C:\\Ruby\\Text\\"

warning = 0
error = 0

d = Dir.new(my_path)
d.each do |fl|
unless fl == '.' or fl == '..' then
puts my_path + fl
File.open(my_path + fl, "r").each do |line|
if line =~ /error/ then
error += 1
elsif line =~ /warning/ then
warning += 1
end
end

end
end
puts warning.to_s
puts error.to_s

The problem that I have now is that it apparently sees the file but does
not read it.

Below is the response that is returned.

C:\Ruby\Text\log_file_20090221_041817.txt
0
0
Press ENTER to close the window...

--
Posted via http://www.ruby-forum.com/.

 
Reply With Quote
 
Tim Hunter
Guest
Posts: n/a
 
      03-01-2009
Brad Winborg wrote:
> Tim Hunter wrote:
>> Brad Winborg wrote:
>>> error = 0
>>> end
>>> Not a directory - D:\My Documents\Replicon\log_file_20090221_041817.txt\
>>> D:/My Documents/Replicon/ErrorCount.rb:6:in `initialize'
>>> Press ENTER to close the window...
>>>
>>> Directory Path
>>> D:\My Documents\Replicon
>>> I was going to add an attachment to show that the directory really exits
>>> and that the file is in that directory, but it was to large.
>>>
>>> If anyone has any ideas as to why it is not working I be very grateful,
>>> as I am new to ruby code in general.

>> Look at the error message. You're asking Dir.new to open the directory
>> "D:\My Documents\Replicon\log_file_20090221_041817.txt".
>> I think the directory name is actually "D:\My Documents\Replicon" and
>> "log_file_20090221_041817.txt" is a file within that directory.

>
> Thank you that did help, but I still have a problem.
>
> my_path = "C:\\Ruby\\Text\\"
>
> warning = 0
> error = 0
>
> d = Dir.new(my_path)
> d.each do |fl|
> unless fl == '.' or fl == '..' then
> puts my_path + fl
> File.open(my_path + fl, "r").each do |line|
> if line =~ /error/ then
> error += 1
> elsif line =~ /warning/ then
> warning += 1
> end
> end
>
> end
> end
> puts warning.to_s
> puts error.to_s
>
> The problem that I have now is that it apparently sees the file but does
> not read it.
>
> Below is the response that is returned.
>
> C:\Ruby\Text\log_file_20090221_041817.txt
> 0
> 0
> Press ENTER to close the window...
>


Without seeing your file I can't offer any specific advice. If it was me
I'd add a "puts line" as the first statement in the block, just to make
sure that the value of line is what I expect it to be.

--
RMagick: http://rmagick.rubyforge.org/

 
Reply With Quote
 
Tim Greer
Guest
Posts: n/a
 
      03-01-2009
Brad Winborg wrote:

> Tim Hunter wrote:
>> Brad Winborg wrote:
>>> error = 0
>>> end
>>> Not a directory - D:\My
>>> Documents\Replicon\log_file_20090221_041817.txt\ D:/My
>>> Documents/Replicon/ErrorCount.rb:6:in `initialize' Press ENTER to
>>> close the window...
>>>
>>> Directory Path
>>> D:\My Documents\Replicon
>>> I was going to add an attachment to show that the directory really
>>> exits and that the file is in that directory, but it was to large.
>>>
>>> If anyone has any ideas as to why it is not working I be very
>>> grateful, as I am new to ruby code in general.

>>
>> Look at the error message. You're asking Dir.new to open the
>> directory "D:\My Documents\Replicon\log_file_20090221_041817.txt".
>> I think the directory name is actually "D:\My Documents\Replicon" and
>> "log_file_20090221_041817.txt" is a file within that directory.

>
> Thank you that did help, but I still have a problem.
>
> my_path = "C:\\Ruby\\Text\\"
>
> warning = 0
> error = 0
>
> d = Dir.new(my_path)
> d.each do |fl|
> unless fl == '.' or fl == '..' then
> puts my_path + fl
> File.open(my_path + fl, "r").each do |line|
> if line =~ /error/ then
> error += 1
> elsif line =~ /warning/ then
> warning += 1
> end
> end
>
> end
> end
> puts warning.to_s
> puts error.to_s
>
> The problem that I have now is that it apparently sees the file but
> does not read it.
>
> Below is the response that is returned.
>
> C:\Ruby\Text\log_file_20090221_041817.txt
> 0
> 0
> Press ENTER to close the window...
>


That code should work. Are you sure that the text file's content
actually match "error" or "warning"? Did you check the letter case?
Perhaps try and put a "puts line" right after the open and see what it
outputs. It looks to be reading the files anyway, otherwise you'd see
an error, rather than just the initial variable's value of 0.
--
Tim Greer, CEO/Founder/CTO, BurlyHost.com, Inc.
Shared Hosting, Reseller Hosting, Dedicated & Semi-Dedicated servers
and Custom Hosting. 24/7 support, 30 day guarantee, secure servers.
Industry's most experienced staff! -- Web Hosting With Muscle!
 
Reply With Quote
 
Brad Winborg
Guest
Posts: n/a
 
      03-02-2009
Tim Greer wrote:
> Brad Winborg wrote:
>
>>>> D:\My Documents\Replicon

>>
>> puts my_path + fl
>> puts warning.to_s
>> Press ENTER to close the window...
>>

>
> That code should work. Are you sure that the text file's content
> actually match "error" or "warning"? Did you check the letter case?
> Perhaps try and put a "puts line" right after the open and see what it
> outputs. It looks to be reading the files anyway, otherwise you'd see
> an error, rather than just the initial variable's value of 0.


I did check the case and it was wrong. I changed it to match and it made
a difference. I still don't think its working correctly. If your curious
I have attached the text file that it is reading.

my_path = "C:\\Ruby\\Text\\"

WARNING = 0
ERROR = 0

d = Dir.new(my_path)

d.each do |fl|
unless fl == '.' or fl == '..' then
puts my_path + fl
File.open(my_path + fl, "r").each do |line|
if line =~ /ERROR/ then
error += 1
elsif line =~ /WARNING/ then
warning += 1
end
end

end
end
puts warning.to_s
puts error.to_s

Attachments:
http://www.ruby-forum.com/attachment...221_041817.rar

--
Posted via http://www.ruby-forum.com/.

 
Reply With Quote
 
Phlip
Guest
Posts: n/a
 
      03-02-2009
Brad Winborg wrote:

> I did check the case and it was wrong. I changed it to match and it made
> a difference. I still don't think its working correctly. If your curious
> I have attached the text file that it is reading.
>
> my_path = "C:\\Ruby\\Text\\"


Paths are much easier to manage using / , even on Windows.

> WARNING = 0
> ERROR = 0


These are not the same as warning and error. And this...

warnings = 0
errors = 0

....provides better "ear" - better hints that we are counting things.

> d = Dir.new(my_path)
>
> d.each do |fl|
> unless fl == '.' or fl == '..' then


Only use unless in a pinch. This is better style:

if fl != '.' and fl != '..'

> puts my_path + fl
> File.open(my_path + fl, "r").each do |line|


Try File.readlines(my_path + fl).each do |line|

> if line =~ /ERROR/ then
> error += 1


You don't need 'then'. It's allowed, but it makes the code more verbose.

> elsif line =~ /WARNING/ then
> warning += 1
> end
> end
>
> end
> end
> puts warning.to_s
> puts error.to_s


puts implies .to_s. Try:

puts "Warnings: #{warnings}; Errors: #{errors}"

Now, would this work?

warnings = File.readlines(my_path + fl).grep(/WARNING/).length

You would be amazed what Ruby can pack into one statement!

--
Phlip
 
Reply With Quote
 
Brad Winborg
Guest
Posts: n/a
 
      03-02-2009
Phlip wrote:
> Brad Winborg wrote:
>
>> I did check the case and it was wrong. I changed it to match and it made
>> a difference. I still don't think its working correctly. If your curious
>> I have attached the text file that it is reading.
>>
>> my_path = "C:\\Ruby\\Text\\"

>
> Paths are much easier to manage using / , even on Windows.
>
>> WARNING = 0
>> ERROR = 0

>
> These are not the same as warning and error. And this...
>
> warnings = 0
> errors = 0
>
> ...provides better "ear" - better hints that we are counting things.
>
>> d = Dir.new(my_path)
>>
>> d.each do |fl|
>> unless fl == '.' or fl == '..' then

>
> Only use unless in a pinch. This is better style:
>
> if fl != '.' and fl != '..'
>
>> puts my_path + fl
>> File.open(my_path + fl, "r").each do |line|

>
> Try File.readlines(my_path + fl).each do |line|
>
>> if line =~ /ERROR/ then
>> error += 1

>
> You don't need 'then'. It's allowed, but it makes the code more verbose.
>
>> elsif line =~ /WARNING/ then
>> warning += 1
>> end
>> end
>>
>> end
>> end
>> puts warning.to_s
>> puts error.to_s

>
> puts implies .to_s. Try:
>
> puts "Warnings: #{warnings}; Errors: #{errors}"
>
> Now, would this work?
>
> warnings = File.readlines(my_path + fl).grep(/WARNING/).length
>
> You would be amazed what Ruby can pack into one statement!


I am feeling a bit stupid at this point parts of what you have said seem
to make sense but other parts don't. I don't to keep bothering you but I
really want to understand what is happening and I am not sure what you
are telling me to replace. You mention warnings allot but not error. I
have replaced what I believe you were saying. whatever you have been a
tremendous help and I hope one gay I can return the favor, but all this
is new stuff to me. I have read allot and it has not helped so far that
is why I have turned to forums like this because I can actually interact
with real people. Below is the code I changed to what I thought you were
telling me.

my_path = "C:/Ruby/Text/"

warnings = 0
errors = 0

d = Dir.new(my_path)

if fl != '.' and fl != '..'

File.readlines(my_path + fl).each do |line|

if line =~ /ERROR/
error += 1
elsif line =~ /WARNING/
warning += 1
end
end

end
end

puts implies .to_s. Try:

puts "Warnings: #{warnings}; Errors: #{errors}"

warnings = File.readlines(my_path + fl).grep(/WARNING/).length

puts error.to_s

--
Posted via http://www.ruby-forum.com/.

 
Reply With Quote
 
lasitha
Guest
Posts: n/a
 
      03-02-2009
On Mon, Mar 2, 2009 at 8:53 AM, Phlip <> wrote:
> Brad Winborg wrote:
>>
>> d.each do |fl|
>> =A0 unless fl =3D=3D '.' or fl =3D=3D '..' then

>
> Only use unless in a pinch. This is better style:
> =A0 =A0if fl !=3D '.' and fl !=3D '..'


I usually agree with anything Phlip says, but not on this

I love that ruby has the unless keyword and use it often. IMO the
version with unless above reads just fine and you should go with
whichever reads better for you.

No need to open up a conversation about unless vs. if !, particularly
since it's happened before [1]. Just wanted Brad to hear an
alternative opinion.

Solidarity,
lasitha

[1] e.g. http://markmail.org/thread/4ywej4tsqhe47b3a

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Trouble running Perl script from within a Perl script laredotornado@zipmail.com Perl Misc 4 07-29-2011 01:44 PM
How to execute a script from another script and other script does notdo busy wait. Rajat Python 3 01-08-2010 02:05 PM
Block execution of script while same script is already running MrBanabas@googlemail.com Ruby 2 12-17-2008 06:03 PM
How to fetch output of some other script in the current running perl script? ritugoyal12@gmail.com Perl Misc 4 10-27-2007 03:52 PM
modify a long-running python script while it is running? Benjamin Rutt Python 2 12-20-2005 01:42 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57