Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Report generation using script Post 303042040 by Neo on Thursday 12th of December 2019 01:54:04 AM
Old 12-12-2019
Quote:
Originally Posted by fretagi
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 information but for 10 servers.
Please can you give an hint in how do I go about it
Here is how I might approach this:
  • Install your script on all 10 of your servers and make sure it works for each.
  • Optional: Install a secure (HTTPS) web server on each server.
  • Optional: Configure a page to use PHP or Python (for example) to call your monitoring script.
  • Optional: Test to make sure you can call this script from an HTTPD call. You can secure this script as required.
  • Modify your script to return your monitoring information (either as an API or write to file) as a serialized JSON object (your API).
  • Optional: Test and confirm you can call your API.
  • Optional: Install this API on all servers.
  • Note: If you do not want to install a web server, you can do this with other methods, for example write the JSON object to a file and use rsync.
  • Optional: Create a web page on a secure server which will call all 10 APIs and display the information on a single web page.

Not knowing your environment and other considerations, if I was doing to do this, I would go with the secure web solution, create the API in PHP to call your monitoring script and format the API return (serialized JSON object). Then I would write another app to call this API (in a loop) for each server and display the results in a dashboard with some canned dashboard dials using a standard Javascript lib for this.

Having not seen your script, I estimate this entire project can be coded and tested in less than a day, two days at the most considering there are 10 servers.

Hope this helps.
 

10 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. 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

5. 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

6. 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

7. 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

8. 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

9. Shell Programming and Scripting

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 tail -f... (4 Replies)
Discussion started by: vel4ever
4 Replies

10. UNIX for Beginners Questions & Answers

UNIX cluster disk usage report generation for yesterday & today and email

HI Team, I am trying to create a shell script to generate a yesterday and today report to compare and email in daily basis. can you please help me on the same. #!/bin/bash #Author: ******************* #Description: This script will return the following set of system information: ... (2 Replies)
Discussion started by: Mi4304
2 Replies
MojoMojo::Installation(3pm)				User Contributed Perl Documentation			       MojoMojo::Installation(3pm)

NAME
MojoMojo::Installation - Installation instructions for MojoMojo INSTALLING MOJOMOJO
Step 0 Install MojoMojo's prerequisites. See <http://mojomojo.org/documentation/installation>. Step 1 - install Install MojoMojo either using the cpan shell like this: cpan MojoMojo or by downloading the tarball from <http://search.cpan.org/dist/MojoMojo> and running perl Makefile.PL on it manually. If you do this, run make installdeps to get all the required modules installed. Step 2 - configure "mojomojo.conf" is the main configuration file and is in Config::General format. First make sure your config file has a valid DSN for your database (You can use SQLite, MySQL or PostgreSQL - SQLite by default). The setting you change is in the "connect_info" hash in the "Model::DBIC" block. For instance, for MySQL: dsn dbi:mysql:database=mojomojo;host=localhost user db_user password db_password or for SQLite: dsn dbi:SQLite:__HOME__/db/sqlite/mojomojo.db user db_user passwrd db_password or for PostgreSQL: dsn dbi:Pg:dbname=mojomojo;host=localhost;port=5432 user db_user password db_password For MySQL and PostgreSQL you want to create the database first (SQLite does this automatically) create database mojomojo; Once the DSN is setup, we "deploy" the schema and some initial data to the mojomojo database by running the following script: ./script/mojomojo_spawn_db.pl This script has sane defaults for a test install, but you can override these. Run it with --help to see usage information. Step 3 - launch MojoMojo is a Catalyst application and works with Catalyst's built-in web server, or with an external one. Using the Catalyst built-in server Catalyst includes a test server which can be started using: ./script/mojomojo_server.pl -p 3000 where 3000 is the port number and the default if no port is specified. Note that if you install it through the cpan shell, mojomojo_server will be found in your bin directory. Using an external web server MojoMojo has been tested with Apache, lighttpd and nginx. If you need to make a choice, nginx and lighttpd are much lighter in terms of resource consumption, and faster at serving static files, while Apache is more popular and powerful. Comparison information can be found at WikiVs: o <http://www.wikivs.com/wiki/Apache_vs_nginx> o <http://www.wikivs.com/wiki/Lighttpd_vs_nginx> o <http://www.wikivs.com/wiki/Apache_vs_Lighttpd> See <http://mojomojo.org/documentation/deployment> for how to setup MojoMojo with various web servers. Set up Apache using either mod_perl or FastCGI. See http://search.cpan.org/dist/Catalyst/lib/Catalyst/Manual/Cookbook.pod#Using_FastCGI for further information on FastCGI, or you can look at Catalyst::Engine::Apache for info on setting up Catalyst apps in Apache. If your server is connected to a http proxy you may need to add the following line to the main config block: using_frontend_proxy 1 Step 4 - login Login to your MojoMojo and change the admin password. The default login/pass is "admin"/"admin". For troubleshooting, see <http://mojomojo.org/troubleshooting>. Step 5 - create pages Create a new page. Decide what URL you would like for the page then browse to that URL. You will then be asked to add content. For example, if you want to create a page about food, go to /food. perl v5.14.2 2010-05-11 MojoMojo::Installation(3pm)
All times are GMT -4. The time now is 06:09 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy