Report generation using perl script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Report generation using perl script
# 1  
Old 07-10-2013
Report generation using perl script

Hi,

I have a perl script to read the log file and create a report from it. I have the script file and log file in a different directories. Now i have pipe the log file data to the perl script to create the report (HMTL file). I am using the below command this isn't working

Code:
tail -f /$LOG_DIR/app.log | perl $SCRIPT_DIR/run_report.pl

But if i use cat command it works,
Code:
cat /$LOG_DIR/app.log | perl $SCRIPT_DIR/run_report.pl

Please advice to use tail or any other commands to create the report dynamically instead of cat.
# 2  
Old 07-10-2013
i could be missing something but ...

the tail -f | perl command will not work until the perl script is done getting its data and the stream closes ... the cat | perl command results in a closed data stream so it does not have the same issue ...

unless your perl script is able to generate the formatted report and update the same report immediately as new data streams in, i think you would be better off running a check on the log file or periodically just tailing a portion of it and then run it through your perl script ...
# 3  
Old 07-10-2013
Ice,

Do we have any other options to get the stream data to feed the perl script?
# 4  
Old 07-10-2013
there is nothing wrong with the data feed ... your issue is that your perl script cannot handle the continuous data stream ...

you might want to revisit your script and/or your requirements ...

if you really want continuous data formatting with tail -f | perl, please read up some more on advance perl programming as well as research all available perl modules ... have fun reading!
# 5  
Old 07-11-2013
Thanks for the info Ice. I do not have more time to complete this with advanced scripting and i can't revisit my requirements at this stage. Let me proceed with 'cat' for now at least.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Report generation using script

Hi all I have a unix script that generates a report with the following information: uptime, mounted file systems, disk usage (> 90% --> critical, <75%-90%> --> warning, < 75% healthy), Mem usage, CPU usage and load average. But I would like to create one single report containing all this... (5 Replies)
Discussion started by: fretagi
5 Replies

2. UNIX for Beginners Questions & Answers

Generation of Regex for Perl script

I want to generate regex for this kind of expression and want to find and replace. like : ----> basically i want to find anything that match a pattern like this and remove the whole thing Please looking for some suggestions (1 Reply)
Discussion started by: utkarshkhanna44
1 Replies

3. Shell Programming and Scripting

Report generation based on certain conditions

Hi I recently joined a project where I have been asked to generate a report using shell script accessing UNIX box. I have no idea on how to do it as I am a beginner and learning shell scripts. Suppose I have a XML: Code: ... (3 Replies)
Discussion started by: vat1kor
3 Replies

4. Shell Programming and Scripting

File Report Generation

hi all i need to generate a report file that contains the following details of files present in a directory. 1. File name 2.Complete path for each files and directory 3.File size 4.Days older example i have a directory testing that contains sub-directories and some files. i need to make a... (5 Replies)
Discussion started by: yashwantkumar
5 Replies

5. Shell Programming and Scripting

Disk report generation problem

Hello everyone, I have a list of inputs as below. My logic is to get the particular powerdisk which matches for ASM disk which means take the major & minor number of each asm disk and matches with powerdisk info then get the particular powerdisk $ ls -l /dev/asm_* ---> ASM disk info... (11 Replies)
Discussion started by: kannan84
11 Replies

6. Shell Programming and Scripting

Report Generation with Grep

All, I am pretty new to Unix Environment. I am not sure if my requirement can be accomplished in Unix. I did try searching this forum and others but could not get an answer. Requirement is explained below: I have a set of files in a folder. file1_unload file2_unload file3_unload... (7 Replies)
Discussion started by: bharath.gct
7 Replies

7. Shell Programming and Scripting

Report generation

Hello, I got a requirement in writing a KSH script in unix, please help me out the requirement is there are two folders Folder1 and Folder2 and there are same files in the different folders. like file1,file2 in folder1 and file1 and file2 in folder2. I would like to compare all the similar... (3 Replies)
Discussion started by: gmahesh2k
3 Replies

8. UNIX for Dummies Questions & Answers

report generation

Hello, I got a requirement in writing a sheel script in unix, please help me out the requirement is there are two folders Folder1 and Folder2 and there are same files in the different folders. like file1,file2 in folder1 and file1 and file2 in folder2. I would like to compare all the... (2 Replies)
Discussion started by: gmahesh2k
2 Replies

9. Shell Programming and Scripting

awk- report generation from input file

I have input file with below content: Person: Name: Firstname1 lastname1 Address: 111, Straat City : Hilversum Person: Name : Fistname2 lastname2 Address: 222, street Cit: Bussum Person: Name : Firstname2 lastname3 Address: 333, station straat City: Amsterdam I need... (6 Replies)
Discussion started by: McLan
6 Replies

10. Shell Programming and Scripting

Oracle Report generation

Hi, I am beginner in shell programming.In a shell script i found a call to a script 'runrep25m',which i think is to generate oracle reports?Could anyone help me by providing some details about its usage With Thanks & Regards Dileep (7 Replies)
Discussion started by: DILEEP410
7 Replies
Login or Register to Ask a Question