Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

send_gearman(8) [debian man page]

SEND_GEARMAN(8) 					  System Administration Utilities					   SEND_GEARMAN(8)

NAME
send_gearman - Submit active and passive check results to a gearman job server DESCRIPTION
usage: send_gearman [ --debug=<lvl> ] [ --help|-h ] [ --config=<configfile> ] [ --server=<server> ] [ --timeout|-t=<timeout> ] [ --delimiter|-d=<delimiter> ] [ --encryption=<yes|no> ] [ --key=<string> ] [ --keyfile=<file> ] [ --host=<hostname> ] [ --service=<servicename> ] [ --result_queue=<queue> ] [ --message|-m=<pluginoutput> ] [ --returncode|-r=<returncode> ] for sending active checks: [ --active ] [ --starttime=<unixtime> ] [ --finishtime=<unixtime> ] [ --latency=<seconds> ] plugin output is read from stdin unless --message is used. Use this mode when plugin has multiple lines of plugin output. Note: When using a delimiter (-d) you may also submit one result for each line. Service Checks: <host_name>[tab]<svc_description>[tab]<return_code>[tab]<plugin_output>[newline] Host Checks: <host_name>[tab]<return_code>[tab]<plugin_output>[newline] see README for a detailed explaination of all options. SEE ALSO
The Mod Gearman documentation is available in /usr/share/doc/mod-gearman/README.html send_gearman 1.3.6-1 July 2012 SEND_GEARMAN(8)

Check Out this Related Man Page

send_nsca(1)						      General Commands Manual						      send_nsca(1)

NAME
send_nsca - send passive check results to an NSCA daemon SYNOPSIS
send_nsca -H <host_address> [-p port] [-to to_sec] [-d delim] [ -c config_file] DESCRIPTION
send_nsca This utility is used to send passive check results to the NSCA daemon. Host and Service check data that is to be sent to the NSCA daemon is read from standard input. Input should be provided in the following format (tab-delimited unless overriden with -d command line argument, one entry per line): Service Checks <host> <svc_description> <return_code> <plugin_output> Host Checks: <host> <return_code> <plugin_output> OPTIONS
host_address The IP address of the host running the NSCA daemon port The port on which the daemon is running - default is 5667 to_sec Number of seconds before connection attempt times out. (default timeout is 10 seconds) delim Delimiter to use when parsing input (defaults to a tab) config_file Name of config file to use SEE ALSO
nsca(1) FILES
/etc/nsca.cfg nsca server configuration /etc/send_nsca.cfg send_nsca configuration AUTHOR
NSCA was written by Ethan Galstad <nagios@nagios.org>. This manpage was written by sean finney <seanius@debian.org> for Debian (but it may be freely used, modified, and redistributed by others). nsca December 2005 send_nsca(1)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Shell Script And SQLPLUS

i'm having real problems retrieving the returncode of my sqlplus-call. I found a lot of informations on the net, but havn't been able to get it running so far, so now i ask for some help ;) I do start the sqlplus out of my shell script with the parameters stored in the proc_clips.sql, which is... (6 Replies)
Discussion started by: maco_home
6 Replies

2. UNIX for Advanced & Expert Users

converting localtime to unixtime

hi, how to convert the localtime to unixtime? i have date from the date command in unix i want to convert it into unixtime thnx (2 Replies)
Discussion started by: AshishK
2 Replies

3. Shell Programming and Scripting

Can someone please help!

Hi! I am trying to write a little script here, which would take input from the user and store them in arrays. But the array part is not working for some reason. Can anyone help please. #!/usr/bin/sh ##Take input from the user while do echo "Please enter the host_name" read... (9 Replies)
Discussion started by: nua7
9 Replies

4. Shell Programming and Scripting

append data in a file by using tab delimiter

Hi, I need to append the data in to a file by using tab delimiter. eg: echo "Data1" >> filename.txt echo "\t" >> filename.txt (its not working) echo "Data2" >> filename.txt. the result sould be like this. Data1 Data2 (6 Replies)
Discussion started by: Sharmila_P
6 Replies

5. UNIX for Advanced & Expert Users

how to search delimiter tab in a line and replace it

hi every one plz help me i want to search for a line contains tabspace This is a line The should be changed see the above line is seperated with tab space i want to replace that tab space in to # as This is a line#The should be changed i have tried with... (4 Replies)
Discussion started by: kkraja
4 Replies

6. UNIX for Dummies Questions & Answers

Delimiter: Tab or Space?

Hello, Is there a direct command to check if the delimiter in your file is a tab or a space? And how can they be converted from one to another. Thanks, G (4 Replies)
Discussion started by: Gussifinknottle
4 Replies

7. Shell Programming and Scripting

urgent<parsing data from a excel file>

Hi all, I wud like to get ur assistance in retrieving lines containing l1.My excel dataset contains around 8000 lines.I converted it into a text tab delimiter file and got the lines containing l1,My output is a list of lines containing l1 saved in a outfile.Some of d lines from my outfile s... (5 Replies)
Discussion started by: sayee
5 Replies

8. Shell Programming and Scripting

Replace date_time to unixtime in csv.file

Hello, since hours I am trying to replace in a csv-file the date_time to unixtime. I tried sed, awk but not successful. I can not call a shell command within awk. Probably there is an easier way. Thanks in advance for your help Regards, telemi test.csv: 2010-04-22... (5 Replies)
Discussion started by: telemi
5 Replies

9. UNIX for Dummies Questions & Answers

unconstant delimiter

I have file with unconstatnt delimiter for each field which are non-printable characters like tab and space file 6271 manchester (tab) 11/09/09 200 accepted 6272 manchester (tab) 11/09/09 200 accepted I want only first... (7 Replies)
Discussion started by: tsurendra
7 Replies

10. UNIX for Dummies Questions & Answers

Making a Tab delimiter file to Comma

How can i make a tab delimiter file to a comma delimiter??? (13 Replies)
Discussion started by: saggiboy10
13 Replies

11. Shell Programming and Scripting

Help regarding the delimiter

Hi, I am trying to load data from a file to oracle DB. The file am using has a ";" as a delimiter. While I load the file, I want to check whether the file is having the correct delimiter or not. if not, the file should not be processed. Is there any way that i could handle this scenario using... (3 Replies)
Discussion started by: smileyreddy
3 Replies

12. Linux

Remove newline in middle of string

my file input is with tab as delimiter, and in every line, there would be a skip of line with an unexcepted newline breaker. I'd like to remove this \n and put the information in the same line. INPUT a1 b1b2 c1 c2 d1 a2 b3 c3 d4 OUTPUT a1 b1b2 c1c2 ... (9 Replies)
Discussion started by: kinkichin
9 Replies

13. Shell Programming and Scripting

Substitute newline with tab at designated field separator

Hello, I need to replace newline with tab at certain lines of the file (every four lines is a record). infile.fq: @GAIIX-300 ATAGTCAAAT + _SZS^\\\cd @GAIIX-300 CATACGACAT + hhghfdffhh @GAIIX-300 GACGACGTAT + gggfcfoutfile: @GAIIX-300 ATAGTCAAAT + _SZS^\\\cd @GAIIX-300 ... (6 Replies)
Discussion started by: yifangt
6 Replies

14. Shell Programming and Scripting

[Solved] Insert tabs as delimiter

Hello all, I have an unstructured file with space as delimiter , which I want to structure. The output file should actually have only 5 columns with tab as delimiter. The 4th column can have only 3 values ( biological_process , cellular_component , molecular_function ) Here is how the... (12 Replies)
Discussion started by: ritakadm
12 Replies

15. UNIX for Dummies Questions & Answers

Extracting Multiple String in a File

Hello... Request for help and assistance... I have a file.txt that contains multiple lines similar from below and I would like to extract to other file in a tab/space delimiter some certain values or field. /dir1/File1.File2_File3/content/data/File4.File5.Service: <connection... (16 Replies)
Discussion started by: WPGPoseidon
16 Replies