<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
<tt>Hi,<br>
<br>
Frassinelli, Marco wrote:</tt>
<blockquote
 cite="mid:F67BD758D4C6ED4B9BE7730A3D78A91C025B2DAF@derum202.emea.corp.eds.com"
 type="cite">
  <meta http-equiv="Content-Type" content="text/html; ">
  <meta name="Generator" content="Microsoft Word 12 (filtered medium)">
  <style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:SimSun;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:SimSun;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:"\@SimSun";
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:Consolas;
        panose-1:2 11 6 9 2 2 4 3 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";
        color:black;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
pre
        {mso-style-priority:99;
        mso-style-link:"HTML Preformatted Char";
        margin:0cm;
        margin-bottom:.0001pt;
        font-size:10.0pt;
        font-family:"Courier New";
        color:black;}
tt
        {mso-style-priority:99;
        font-family:"Courier New";}
span.HTMLPreformattedChar
        {mso-style-name:"HTML Preformatted Char";
        mso-style-priority:99;
        mso-style-link:"HTML Preformatted";
        font-family:Consolas;
        color:black;}
span.EmailStyle20
        {mso-style-type:personal;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
span.EmailStyle21
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@page Section1
        {size:612.0pt 792.0pt;
        margin:70.85pt 2.0cm 2.0cm 2.0cm;}
div.Section1
        {page:Section1;}
-->
  </style>
<!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1" />
 </o:shapelayout></xml><![endif]-->
  <div class="Section1">
  <p class="MsoNormal"><tt><span
 style="font-size: 11pt; font-family: "Calibri","sans-serif"; color: rgb(31, 73, 125);"
 lang="EN-US">Hello<o:p></o:p></span></tt></p>
  <p class="MsoNormal" style="margin-left: 35.4pt;"><tt><span
 style="font-size: 10pt;" lang="EN-US">The process of starting ndo2db
and then Nagios makes
sure that there is actual data within the DB. </span></tt><tt><span
 style="font-size: 10pt;">If there is an outdated data within the DB it
needs to
be removed before Nagios even sends new data. So the process of
trimming those
table entries is truly intentional at the beginning (so-called
pre-launch state
where the if condition matches). If ndo2db fails for some reason, those
data
will remain within the database and then removed during the next start.
  <o:p></o:p></span></tt></p>
  <p class="MsoNormal"><tt><span
 style="font-size: 11pt; font-family: "Calibri","sans-serif"; color: rgb(31, 73, 125);">               
  </span></tt><tt><span
 style="font-size: 11pt; font-family: "Calibri","sans-serif"; color: rgb(31, 73, 125);"
 lang="EN-US">Ok, when the parent ndo2db process starts. But not when
the
child starts.</span></tt></p>
  </div>
</blockquote>
<tt>Considering the fact that the process runs daemonized and forks a
child for each ndomod client connection, that is truly wrong. See the
NDOUtils documentation page 8:<br>
<a class="moz-txt-link-freetext" href="http://www.scribd.com/doc/17608352/Nagios-NDOUtils">http://www.scribd.com/doc/17608352/Nagios-NDOUtils</a><br>
<br>
Going deeper into the code in ndo2db.c:main you will recognize that
after initialization stuff that the standalone daemon condition matches.<br>
<br>
        /* standalone daemon... */<br>
        else{<br>
<br>
                /* create socket and wait for clients to connect */<br>
                if(ndo2db_wait_for_connections()==NDO_ERROR)<br>
                        return 1;<br>
                }<br>
<br>
This function opens the socket wether tcp or unix. Then the parent
forks a child to handle client data (0 = everythings ok, -1 = error).<br>
<br>
                /* fork... */<br>
                new_pid=fork();<br>
<br>
                switch(new_pid){<br>
[...]<br>
                case 0:<br>
#endif<br>
                        /* child processes data... */<br>
                        ndo2db_handle_client_connection(new_sd);<br>
<br>
                        /* close socket when we're done */<br>
                        close(new_sd);<br>
#ifndef DEBUG_NDO2DB<br>
                        return NDO_OK;<br>
                        break;<br>
[...]<br>
                        }<br>
<br>
Parent runs in a while loop and if child has died on the client
connection, it forks a new one.<br>
The child then reads the data from the socket within
ndo2db_handle_client_connection. If there's nothing on the socket, the
client connection was lost and the while(1) terminates (also on
errors), meaning the child to terminate too. The child performs the
memory cleanup and db disconnect and then the process of the parent
accepting new client connection and forking a child for each client
connection starts again. <br>
Just look that up in the code, it's quite nice commented. <br>
<br>
                /* check for completed lines of input */<br>
                ndo2db_check_for_client_input(&idi,&dbuf);<br>
<br>
This function also decides if the actual client needs to be
disconnected. So there are 3 main options that can lead to the
termination of the child:<br>
<br>
* socket read result fails with -1, eagain/eintr ->
<a class="moz-txt-link-freetext" href="http://linux.die.net/man/2/read">http://linux.die.net/man/2/read</a><br>
* socket read is empty<br>
* client input is wrong protocol (idi->disconnect_client)<br>
<br>
If one line has been read from the socket, it comes to
ndo2db_handle_client_input where the data frame is analyzed. If clients
protocol (ndomod) doesn't match ndo2db protocol, client will be
disconnected and data ignored.<br>
<br>
                        /* client is using wrong protocol version, bail
out here... */<br>
                       
if(idi->protocol_version!=NDO_API_PROTOVERSION){<br>
                                syslog(LOG_USER|LOG_INFO,"Error: Client
protocol version %d is incompatible with server version %d. 
Disconnecting client...",idi->protocol_version,NDO_API_PROTOVERSION);<br>
                                idi->disconnect_client=NDO_TRUE;<br>
                                idi->ignore_client_data=NDO_TRUE;<br>
                                return NDO_ERROR;<br>
                                }<br>
<br>
Other data will be read, parsed and saved by type as
idi->buffered_input ... If the data section is complete given by
data_type==NDO_API_ENDDATA then ndo2db_end_input_data will be called
wherein the dbhandling starts e.g.<br>
<br>
        case NDO2DB_INPUT_DATA_PROGRAMSTATUSDATA:<br>
                result=ndo2db_handle_programstatusdata(idi);<br>
                break;<br>
<br>
values for the dbquery will be read
(dbhandler.c:,ndo2db_handle_programstatusdata) and then the queries are
sent to db - currently MySQL only, calling ndo2db_db_query<br>
<br>
<br>
But the real question is - where is ndo2db_handle_processdata called
that will perform the table trimming if program is starting up? Ok,
that's the same datahandling.<br>
<br>
        /* realtime Nagios data */<br>
        case NDO2DB_INPUT_DATA_PROCESSDATA:<br>
                result=ndo2db_handle_processdata(idi);<br>
                break;<br>
<br>
Looking at the way we got here it's quite simple to see that only the
child will call this function. So everytime the child dies and gets
forked again, the condition of starting up and outdated realtime data
matches. And furthermore, the trimming of the tables. <br>
<br>
-----------------------<br>
Stepping a bit more on the client side with ndomod, the data comes from
<br>
<br>
                        /* realtime data */<br>
                        case NDO_API_PROCESSDATA:<br>
                               
idi->current_input_data=NDO2DB_INPUT_DATA_PROCESSDATA;<br>
                                break;<br>
<br>
which is generated in ndomod.c:ndomod_broker_data<br>
<br>
        /* handle the event */<br>
        switch(event_type){<br>
<br>
        case NEBCALLBACK_PROCESS_DATA:<br>
<br>
and written to datasink<br>
<br>
        /* write data to sink */<br>
        if(write_to_sink==NDO_TRUE)<br>
                ndomod_write_to_sink(dbuf.buf,NDO_TRUE,NDO_TRUE);<br>
<br>
-----------------------<br>
The conditional match for NEBTYPE_PROCESS_PRELAUNCH comes directly from
Nagios and the defines for the Broker module. This type will be sent to
the broker after loading all neb modules.<br>
<br>
It seems that your Nagios version does not change this type or it
simply reloads the broker module every 60 seconds. It could occur that
the nagios process is restarted for whatever reason, since the do while
loop runs on sigrestart==TRUE && sigshutdown==FALSE<br>
<br>
But I am not very familiar with that, that's just a guess. The only
thing is that the ndomod/ndo2db will receive the
NEBTYPE_PROCESS_PRELAUNCH and then do the work. So the conclusion would
be that they're working fine. <br>
<br>
The only thing I could imagine at last is that the data written/read
from the socket (tcp or unix) is truncated. The defines for the
NEBTYPEs only differ by one or two bits. That could lead into errors
but every 60 seconds is kind of weird....</tt><tt><br>
<br>
</tt>
<blockquote
 cite="mid:F67BD758D4C6ED4B9BE7730A3D78A91C025B2DAF@derum202.emea.corp.eds.com"
 type="cite">
  <div class="Section1">
  <p class="MsoNormal" style="margin-left: 35.4pt;"><tt><span
 style="font-size: 10pt;"></span><o:p></o:p></tt> </p>
  <p class="MsoNormal"><tt><span
 style="font-size: 11pt; font-family: "Calibri","sans-serif"; color: rgb(31, 73, 125);">               
  </span><span
 style="font-size: 11pt; font-family: "Calibri","sans-serif"; color: rgb(31, 73, 125);"
 lang="EN-US">I am referring to the code in visualization software, not
ndo.</span></tt></p>
  </div>
</blockquote>
<tt>Then you should point exactly to it as I am not aware what you
meant or which codebase you are using. Furthermore you should mention
Nagios and NDOUtils version, operating system and architecture.</tt>
<blockquote
 cite="mid:F67BD758D4C6ED4B9BE7730A3D78A91C025B2DAF@derum202.emea.corp.eds.com"
 type="cite">
  <div class="Section1">
  <p class="MsoNormal" style="margin-left: 35.4pt;"><tt><span
 style="font-size: 10pt;"></span></tt><tt><span
 style="font-size: 10pt; color: rgb(31, 73, 125);"><o:p></o:p></span></tt></p>
  <p class="MsoNormal"><tt><span
 style="font-size: 11pt; font-family: "Calibri","sans-serif"; color: rgb(31, 73, 125);"><br>
  </span><span
 style="font-size: 11pt; font-family: "Calibri","sans-serif"; color: rgb(31, 73, 125);"
 lang="EN-US"><o:p></o:p></span></tt></p>
  <p class="MsoNormal"><tt><span
 style="font-size: 11pt; font-family: "Calibri","sans-serif"; color: rgb(31, 73, 125);"
 lang="EN-US">                The
other strange thing is that ndo2db refork exactly every 60 seconds.
Where in
the code I can find this interval? Why the child ndo2db exits?</span></tt></p>
  </div>
</blockquote>
<tt>See above, it seems that the event broker/ndomod doesn't send any
data (or the socket is broken) and then a refork is performed. <br>
<br>
How did you do that trace?<br>
<br>
Kind regards,<br>
Michael</tt>
</body>
</html>