Skip to content
This repository has been archived by the owner on Jan 15, 2019. It is now read-only.

[dev.icinga.com #2342] Long output data causes wrong data in database #873

Closed
icinga-migration opened this issue Feb 22, 2012 · 26 comments
Closed
Milestone

Comments

@icinga-migration
Copy link

This issue has been migrated from Redmine: https://dev.icinga.com/issues/2342

Created by jmosshammer on 2012-02-22 11:18:12 +00:00

Assignee: mfriedrich
Status: Resolved (closed on 2013-01-16 19:55:43 +00:00)
Target Version: 1.9
Last Update: 2014-12-08 14:37:34 +00:00 (in Redmine)

Icinga Version: 1.10.0
OS Version: any

We encountered the following issue:
We have a plugin that produces verly large output (~800 Lines, not perfdata).
In Icinga-Web, we noticed that the service state is always ok, even if the classic interface showed critical/warning.

Also, the service was sometimes displayed with 'disable_notifications', sometimes the check is written as disabled to the db. (in classic everything is ok, and those flags are not set) - Perhaps there's an overflow in the idoutils?

This is written to the database in this way, so it's not an icinga-web issue.

Modifying a existing plugin like check_echo so that it produces a large output caused the same effect.

Pluginoutput looks like this:

Differences on mysql5g
TABLE CHUNK CNT_DIFF CRC_DIFF CHUNK_INDEX LOWER_BOUNDARY UPPER_BOUNDARY
blog.site_xyp 38 0 1 id 8033859 8158659
blog.site_xyp 39 0 1 id 8158661 8283521
...
inxyz.datapoint 12109 0 1 PRIMARY 776,776,4,776,4,1328652000 776,776,6,776,6,1313550000
inxyz.datapoint 12138 0 1 PRIMARY 778,778,4,778,4,1326385800 778,778,6,778,6,1312416000
inxyz_live.datapoint 28619 0 1 PRIMARY 1736,1736,4,1736,4,1327199400 1736,1736,6,1736,6,1313193600
...

(about 800 lines)

Core: 1.6
DB: MySQL 5.0
Web: 1.6.2dev

Changesets

2012-03-04 08:35:09 +00:00 by Tommi f04c704

idoutils: truncate long_output and perfdata for mysql #2342
refs #2342

2012-04-02 18:34:50 +00:00 by Tommi 703426f

idoutils:enhance clob bind functions #2342,#2303
refs #2303,#2342

2012-04-03 18:48:27 +00:00 by Tommi 0906122

idoutils:fix wrong lob variable assignments, set lob chunk size back to 2048
refs #2303, #2342

2013-01-02 19:55:51 +00:00 by (unknown) 00aebd0

idoutils: fix long output data causes wrong data in database refs #2342

well, well, well. the original fix for truncating the data for mysql
output was a good idea either way. but the root cause for the data
irritation itsself did happen sooner.

ido2db just treats the data it gets in a sequential way. from within the
debug logs remarked in #2342 it's easy to see that the data is truncated
the wrong way, leaving out essential protocol (idomod->ido2db)
information which then causes wrong data insert/update queries in
ido2db.

idomod has a funny method of handling data truncation: first, it creates
a string containing all the protocol information, and cuts that to
IDOMOD_MAX_BUFLEN if too large. the protocol information in the end gets
lost, and so does the data on the other side.

fix for now is to limit long_output/perf_data in advance.

2013-01-02 20:23:00 +00:00 by (unknown) cfa3d76

idoutils: fix long output data causes wrong data in database refs #2342

well, well, well. the original fix for truncating the data for mysql
output was a good idea either way. but the root cause for the data
irritation itsself did happen sooner.

ido2db just treats the data it gets in a sequential way. from within the
debug logs remarked in #2342 it's easy to see that the data is truncated
the wrong way, leaving out essential protocol (idomod->ido2db)
information which then causes wrong data insert/update queries in
ido2db.

idomod has a funny method of handling data truncation: first, it creates
a string containing all the protocol information, and cuts that to
IDOMOD_MAX_BUFLEN if too large. the protocol information in the end gets
lost, and so does the data on the other side.

fix for now is to limit long_output/perf_data in advance.

Relations:

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2012-02-22 11:59:27 +00:00

and the database table data looks how?

@icinga-migration
Copy link
Author

Updated by jmosshammer on 2012-02-22 14:03:46 +00:00

Like I said, it's written like to the database as icinga-web displays it: current_state is always zero, sometimes the check/notification parameters are modified.

if it helps, long_output is truncated and completely unrelated data to the output appended at the end (in this case the DN from LConf, which should not appear in the plugin output):

,97262=DN:0:cn=xyz-check-checksum,ou=template-linux-xyz,ou=Templates,ou=LConf,dc=xyz,dc=org

---------------------
| length(long_output) |

---------------------
| 48653 |

---------------------

@icinga-migration
Copy link
Author

Updated by Tommi on 2012-02-22 20:37:38 +00:00

long_output is a text column with max 2^16 =65536 bytes (we are using UTF8, means less characters than bytes) Next bigger type is longtext which allows 2^32 bytes.
http://dev.mysql.com/doc/refman/5.0/en/storage-requirements.html
according mysql docs max_allowed_packet mysql parameter must be increased to the max length of column, but cannot exceed 1G
http://dev.mysql.com/doc/refman/5.0/en/server-system-variables.html#sysvar\_max\_allowed\_packet. I am just imaging we are alloacting 1G buffer and another 1G just for one long_output column. How many percent of installations will go down...?
At this point i would like to vote for limiting the long_output to 32k chars for mysql. The other option is the change of data type for mysql and a review of memory allocations.
Oracle handles clob in chunks, this i implemented with V1.5. pgsql i am not aware.

@icinga-migration
Copy link
Author

Updated by jmosshammer on 2012-02-23 13:52:56 +00:00

FYI, today the plugin produced less output (2200 Chars) and worked fine.

I agree to Tommis solution with limiting output data (and truncating it) - it's better to have 32K of truncated output and a correct check result/no sideeffects.

@icinga-migration
Copy link
Author

Updated by Tommi on 2012-03-03 12:02:04 +00:00

  • Category set to 79
  • Status changed from New to Assigned
  • Assigned to set to Tommi
  • Target Version set to 1.7

i will add the truncate to mysql code. Again, What about the size? In Ido2db.h is defined IDO2DB_MAX_BUFLEN=16384. In Idomod.h we have IDOMOD_MAX_BUFLEN=49152. As discussed above i would set it to the half of mysql_net_buffer=65535 => 32768, because the whole sql must fit into this buffer, not only the column we mentioned.

@icinga-migration
Copy link
Author

Updated by Tommi on 2012-03-03 19:51:23 +00:00

  • Status changed from Assigned to Feedback
  • Done % changed from 0 to 100

applied in changeset 42917a36b337b62ca1e23df76348de105579e24b
it will additional truncate perfdata, because its the same type.
Pls check, if this solves your problem

@icinga-migration
Copy link
Author

Updated by Tommi on 2012-03-04 13:52:24 +00:00

commit message in changeset had wrong ticket number. Did amend and set correct ticket id. After push got another changeset id.

@icinga-migration
Copy link
Author

Updated by jmosshammer on 2012-03-05 07:46:28 +00:00

Thanks, we'll give it try!

@icinga-migration
Copy link
Author

Updated by jmosshammer on 2012-03-15 10:01:33 +00:00

Just got feedback from our monitoring guys, now there are no more strange events like notifications disabled, etc. but the check returns status Pending and no output according to them.

@icinga-migration
Copy link
Author

Updated by Tommi on 2012-03-15 19:04:06 +00:00

My patch only restricts size of long_output data, nothing more. With the information provided i cannot guess whats going wrong. Maybe you suggest a full debug trace and scan for the sql and the lines around and send me the related output together with database content and your expection how should it look like.

@icinga-migration
Copy link
Author

Updated by Tommi on 2012-03-30 16:00:39 +00:00

if there are any news on this topic? Otherwise i will go to set this ticket to resolved.

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2012-03-31 10:55:27 +00:00

i need to test your changes. given the last feedback i would expect buggy behaviour an rather revert the commit to prevent unwanted bugs?

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2012-04-02 14:26:30 +00:00

  • Status changed from Feedback to Assigned
  • Done % changed from 100 to 50

mostly what i expected - now it says less data provided for writing than indicated.

rhel 5.8 x64, db connection via (server version 11.2.11, client version [1110], ocilib version 3.9.2)

remote oracle box
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production

for the record - i ran oracle-upgrade-1.70.sql cleanly before testing your branch.

syslog

Apr  2 16:11:23 xxx ido2db: OCIERROR - MSG ORA-24811: less data provided for writing than indicated  
Apr  2 16:11:31 xxx ido2db: OCIERROR - MSG ORA-24811: less data provided for writing than indicated  

ido2db.debug

Mon Apr  2 16:06:14 2012 .228584 [001.2] [pid=21626] [tid=47087224789952] ido2db_query_insert_or_update_hoststatusdata_add() start
Mon Apr  2 16:06:14 2012 .228657 [001.2] [pid=21626] [tid=47087224789952] ido2db_query_insert_or_update_hoststatus() bind clob
Mon Apr  2 16:06:14 2012 .232815 [002.2] [pid=21626] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,1184 Bytes requested
Mon Apr  2 16:06:14 2012 .232878 [002.2] [pid=21626] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,Next chunk 1024 bytes from pos 0 (total 1184) 
Mon Apr  2 16:06:14 2012 .234755 [002.2] [pid=21626] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,1024 Bytes(total 1024/1184)   appended
Mon Apr  2 16:06:14 2012 .234789 [002.2] [pid=21626] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,Next chunk 160 bytes from pos 1024 (total 1184) 
Mon Apr  2 16:06:14 2012 .253040 [001.2] [pid=21626] [tid=47087224789952] OCIERROR - MSG ORA-24811: less data provided for writing than indicated

Mon Apr  2 16:06:14 2012 .253069 [002.2] [pid=21626] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,Last append failed: 160 Bytes(total 1024/1184):'> 2IPv6PING OK - Packet loss = 0%, RTA = 0.04 ms'
Mon Apr  2 16:06:14 2012 .253862 [001.2] [pid=21626] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,Lob write warning:len 1184, but lob size 1024 (last chunk '> 2IPv6PING OK - Packet loss = 0%, RTA = 0.04 ms')
Mon Apr  2 16:06:14 2012 .253898 [001.2] [pid=21626] [tid=47087224789952] ido2db_query_insert_or_update_hoststatus()  clob bind error
Mon Apr  2 16:06:14 2012 .256346 [001.2] [pid=21626] [tid=47087224789952] ido2db_query_insert_or_update_hoststatusdata_add() end


Mon Apr  2 16:11:31 2012 .277239 [001.2] [pid=22078] [tid=47087224789952] ido2db_query_insert_or_update_hoststatusdata_add() start
Mon Apr  2 16:11:31 2012 .277311 [001.2] [pid=22078] [tid=47087224789952] ido2db_query_insert_or_update_hoststatus() bind clob
Mon Apr  2 16:11:31 2012 .280337 [002.2] [pid=22078] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,1184 Bytes requested
Mon Apr  2 16:11:31 2012 .280369 [002.2] [pid=22078] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,Next chunk 1024 bytes from pos 0 (total 1184) 
Mon Apr  2 16:11:31 2012 .281837 [002.2] [pid=22078] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,1024 Bytes(total 1024/1184)   appended
Mon Apr  2 16:11:31 2012 .281869 [002.2] [pid=22078] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,Next chunk 160 bytes from pos 1024 (total 1184) 
Mon Apr  2 16:11:31 2012 .282523 [001.2] [pid=22078] [tid=47087224789952] OCIERROR - MSG ORA-24811: less data provided for writing than indicated

Mon Apr  2 16:11:31 2012 .282547 [002.2] [pid=22078] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,Last append failed: 160 Bytes(total 1024/1184):'> 2IPv6PING OK - Packet loss = 0%, RTA = 0.04 ms'
Mon Apr  2 16:11:31 2012 .283188 [001.2] [pid=22078] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,Lob write warning:len 1184, but lob size 1024 (last chunk '> 2IPv6PING OK - Packet loss = 0%, RTA = 0.04 ms')
Mon Apr  2 16:11:31 2012 .283224 [001.2] [pid=22078] [tid=47087224789952] ido2db_query_insert_or_update_hoststatus()  clob bind error
Mon Apr  2 16:11:31 2012 .285592 [001.2] [pid=22078] [tid=47087224789952] ido2db_query_insert_or_update_hoststatusdata_add() end

Mon Apr  2 16:16:40 2012 .300416 [001.2] [pid=22078] [tid=47087224789952] ido2db_handle_hoststatusdata() LongLen:1184
Mon Apr  2 16:16:40 2012 .300426 [001.2] [pid=22078] [tid=47087224789952] ido2db_query_insert_or_update_hoststatusdata_add() start
Mon Apr  2 16:16:40 2012 .300484 [001.2] [pid=22078] [tid=47087224789952] ido2db_query_insert_or_update_hoststatus() bind clob
Mon Apr  2 16:16:40 2012 .305333 [002.2] [pid=22078] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,1184 Bytes requested
Mon Apr  2 16:16:40 2012 .305382 [002.2] [pid=22078] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,Next chunk 1024 bytes from pos 0 (total 1184) 
Mon Apr  2 16:16:40 2012 .306767 [002.2] [pid=22078] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,1024 Bytes(total 1024/1184)   appended
Mon Apr  2 16:16:40 2012 .306800 [002.2] [pid=22078] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,Next chunk 160 bytes from pos 1024 (total 1184) 
Mon Apr  2 16:16:40 2012 .307427 [001.2] [pid=22078] [tid=47087224789952] OCIERROR - MSG ORA-24811: less data provided for writing than indicated

Mon Apr  2 16:16:40 2012 .307440 [002.2] [pid=22078] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,Last append failed: 160 Bytes(total 1024/1184):'> 2IPv6PING OK - Packet loss = 0%, RTA = 0.05 ms'
Mon Apr  2 16:16:40 2012 .308092 [001.2] [pid=22078] [tid=47087224789952] ido2db_oci_bind_clob:Bind :X5i,Lob write warning:len 1184, but lob size 1024 (last chunk '> 2IPv6PING OK - Packet loss = 0%, RTA = 0.05 ms')
Mon Apr  2 16:16:40 2012 .308111 [001.2] [pid=22078] [tid=47087224789952] ido2db_query_insert_or_update_hoststatus()  clob bind error
Mon Apr  2 16:16:40 2012 .310294 [001.2] [pid=22078] [tid=47087224789952] ido2db_query_insert_or_update_hoststatusdata_add() end

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2012-04-02 14:27:48 +00:00

btw - i can't alter session for tracing, that's prohibited by dba.

Mon Apr  2 16:00:10 2012 .449744 [001.2] [pid=21246] [tid=47087224789952] ido2db_oci_set_trace_event:set trace level event to 0
Mon Apr  2 16:00:10 2012 .449834 [002.2] [pid=21246] [tid=47087224789952] ido2db_oci_set_trace_event Binds:1 BindVars -->[Name:':level',Type:uInt,Val:'0']
Mon Apr  2 16:00:10 2012 .536419 [002.2] [pid=21246] [tid=47087224789952] ido2db_oci_set_trace_event DBMSOUT:Error: No "Alter session" right
Mon Apr  2 16:00:10 2012 .537241 [001.2] [pid=21246] [tid=47087224789952] ido2db_oci_statement_free:Statement ido2db_oci_set_trace_event freed
Mon Apr  2 16:00:10 2012 .537279 [001.2] [pid=21246] [tid=47087224789952] ido2db_oci_set_trace_event end

@icinga-migration
Copy link
Author

Updated by Tommi on 2012-04-02 16:03:21 +00:00

regarding 24811 message: according http://sourceforge.net/projects/orclib/forums/forum/470801/topic/5000325 this is not an error, only a warning. Content should be correct. Its related to the UTF8 vs. Ansi discussion. I tought i cleaned already the misleading message. I will check this. But anyway, it is not related to the ticket topic, its more a general lob handling issue.

For enabling the trace of own sessions "alter session" priviledge is required(and documented). Its not a standard right, but is safe also from the dba perspective, especially for dev environments. This because i trapped the missing right into the log entries you mentioned to give the hint again. You can ask your DBA why it's not possible to grant this right.

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2012-04-02 16:10:38 +00:00

well it's treated as oci error and therefore written to syslog (or any other facility) that's why it made me nervous.

it happens only on hoststatus with some check_multi html output though from a testcase in #674

define host{
        name                            linux-server-v6    ; The name of this host template
        use                             generic-host    ; This template inherits other values from the generic-host template
        check_period                    24x7            ; By default, Linux hosts are checked round the clock
        check_interval                  5               ; Actively check the host every 5 minutes
        retry_interval                  1               ; Schedule host check retries at 1 minute intervals
        max_check_attempts              10              ; Check each Linux host 10 times (max)
        check_command                   check-host-alive-v6 ; Default command to check Linux hosts
        notification_period             workhours       ; Linux admins hate to be woken up, so we only notify during the day
                                                        ; Note that the notification_period variable is being overridden from
                                                        ; the value that is inherited from the generic-host template!
        notification_interval           120             ; Resend notifications every 2 hours
        notification_options            d,u,r           ; Only send notifications for specific host states
        contact_groups                  blub                ; Notifications get sent to the admins by default
        register                        0               ; DONT REGISTER THIS DEFINITION - ITS NOT A REAL HOST, JUST A TEMPLATE!
        }

define host{
        use                     linux-server-v6            ; Name of host template to use
        host_name               localhostv6
        alias                   localhostv6
        address                 127.0.0.1
        address6                ::1
        check_command           check_multi!check_multi_host_dualstack.cmd -r 1+2+4+8
        }


define command {
  command_name         check_multi
  command_line         /opt/nagios/libexec/check_multi -l /opt/nagios/libexec -s HOSTADDRESS=$HOSTADDRESS$ -s HOSTADDRESS6=$HOSTADDRESS6$ -f /etc/nagios/$ARG1$ $ARG2$ $ARG3$ $ARG4$
}


command[ IPv4 ]         = check_ping -4 -H $HOSTADDRESS$ -w 3000.0,80% -c 5000.0,100% -p 5
command[ IPv6 ]         = check_ping -6 -H $HOSTADDRESS6$ -w 3000.0,80% -c 5000.0,100% -p 5

state   [ CRITICAL   ] = COUNT(CRITICAL) > 1
state   [ WARNING    ] = COUNT(WARNING) > 0 || COUNT(CRITICAL) > 0
state   [ UNKNOWN    ] = COUNT(UNKNOWN) > 1

@icinga-migration
Copy link
Author

Updated by Tommi on 2012-04-02 18:47:37 +00:00

OK, its not the case i assumed just before, this looks really whorse. Error is the same we had in #2303

ido2db_oci_bind_clob:Bind :X5i,1184 Bytes requested

It clams to have 1184 bytes to store. First chunk is 1024 bytes and was successfully.

Next chunk 1024 bytes from pos 0 (total 1184) 
ido2db_oci_bind_clob:Bind :X5i,1024 Bytes(total 1024/1184)   appended

Next chunk should be the remaining 160bytes. Correct.

Next chunk 160 bytes from pos 1024 (total 1184) 

Now oracle says not enough data available.

OCIERROR - MSG ORA-24811: less data provided for writing than indicated

But the string buffer we handover

 2IPv6PING OK - Packet loss = 0%, RTA = 0.05 ms

is exactly 160 Bytes long and doesnt contains any multibyte characters.

Now added an explicit reset for char counter within the loop and an utf8 ready char count function. Hope this solves the problem. Finally, i reduced chunk size to 16Byte to check handover of chunks. For now its looks OK in my environment. Please check again. Finally, the chunk size in db.h should be increase before release to 1024 or more.
Applied in Changeset 703426f

Mon Apr  2 20:16:01 2012 .169100 [001.2] [pid=21532] [tid=140596404573952] ido2db_handle_hoststatusdata() start
Mon Apr  2 20:16:01 2012 .169106 [001.2] [pid=21532] [tid=140596404573952] ido2db_convert_standard_data_elements() start
Mon Apr  2 20:16:01 2012 .169113 [001.2] [pid=21532] [tid=140596404573952] ido2db_convert_standard_data_elements() end
Mon Apr  2 20:16:01 2012 .169124 [001.2] [pid=21532] [tid=140596404573952] ido2db_db_escape_string('PING OK - Packet loss = 0%, RTA = 5.59 ms') start
Mon Apr  2 20:16:01 2012 .169132 [001.2] [pid=21532] [tid=140596404573952] ido2db_db_escape_string end
Mon Apr  2 20:16:01 2012 .169138 [001.2] [pid=21532] [tid=140596404573952] ido2db_db_escape_string('') start
Mon Apr  2 20:16:01 2012 .169144 [001.2] [pid=21532] [tid=140596404573952] ido2db_db_escape_string end
Mon Apr  2 20:16:01 2012 .169150 [001.2] [pid=21532] [tid=140596404573952] ido2db_db_escape_string('rta=5.585000ms;3000.000000;5000.000000;0.000000 pl=0%;80;100;0') start
Mon Apr  2 20:16:01 2012 .169156 [001.2] [pid=21532] [tid=140596404573952] ido2db_db_escape_string end
Mon Apr  2 20:16:01 2012 .169162 [001.2] [pid=21532] [tid=140596404573952] ido2db_db_escape_string('') start
Mon Apr  2 20:16:01 2012 .169168 [001.2] [pid=21532] [tid=140596404573952] ido2db_db_escape_string end
Mon Apr  2 20:16:01 2012 .169174 [001.2] [pid=21532] [tid=140596404573952] ido2db_db_escape_string('check-host-alive') start
Mon Apr  2 20:16:01 2012 .169181 [001.2] [pid=21532] [tid=140596404573952] ido2db_db_escape_string end
Mon Apr  2 20:16:01 2012 .169187 [001.2] [pid=21532] [tid=140596404573952] ido2db_get_object_id_with_insert() start
Mon Apr  2 20:16:01 2012 .169193 [001.2] [pid=21532] [tid=140596404573952] ido2db_get_object_id() start
Mon Apr  2 20:16:01 2012 .169199 [001.2] [pid=21532] [tid=140596404573952] ido2db_get_cached_object_id() start
Mon Apr  2 20:16:01 2012 .169209 [001.2] [pid=21532] [tid=140596404573952] ido2db_object_hashfunc() start
Mon Apr  2 20:16:01 2012 .169215 [001.2] [pid=21532] [tid=140596404573952] ido2db_object_hashfunc() end
Mon Apr  2 20:16:01 2012 .169222 [001.2] [pid=21532] [tid=140596404573952] ido2db_get_cached_object_id(0) end
Mon Apr  2 20:16:01 2012 .169231 [001.2] [pid=21532] [tid=140596404573952] ido2db_db_escape_string('GS1224-1') start
Mon Apr  2 20:16:01 2012 .169238 [001.2] [pid=21532] [tid=140596404573952] ido2db_db_escape_string end
Mon Apr  2 20:16:01 2012 .169260 [001.2] [pid=21532] [tid=140596404573952] ido2db_oci_prepared_statement_bind_null_param() param=:X4
Mon Apr  2 20:16:01 2012 .169825 [001.2] [pid=21532] [tid=140596404573952] ido2db_query_objects_select_name1_name2(GS1224-1,(null)) object id=53 selected
Mon Apr  2 20:16:01 2012 .169842 [001.2] [pid=21532] [tid=140596404573952] ido2db_get_object_id(53) end
Mon Apr  2 20:16:01 2012 .169851 [001.2] [pid=21532] [tid=140596404573952] ido2db_get_object_id_with_insert() start
Mon Apr  2 20:16:01 2012 .169858 [001.2] [pid=21532] [tid=140596404573952] ido2db_get_object_id() start
Mon Apr  2 20:16:01 2012 .169864 [001.2] [pid=21532] [tid=140596404573952] ido2db_get_cached_object_id() start
Mon Apr  2 20:16:01 2012 .169870 [001.2] [pid=21532] [tid=140596404573952] ido2db_object_hashfunc() start
Mon Apr  2 20:16:01 2012 .169876 [001.2] [pid=21532] [tid=140596404573952] ido2db_object_hashfunc() end
Mon Apr  2 20:16:01 2012 .169882 [001.2] [pid=21532] [tid=140596404573952] ido2db_get_cached_object_id(0) end
Mon Apr  2 20:16:01 2012 .169890 [001.2] [pid=21532] [tid=140596404573952] ido2db_db_escape_string('24x7') start
Mon Apr  2 20:16:01 2012 .169897 [001.2] [pid=21532] [tid=140596404573952] ido2db_db_escape_string end
Mon Apr  2 20:16:01 2012 .169908 [001.2] [pid=21532] [tid=140596404573952] ido2db_oci_prepared_statement_bind_null_param() param=:X4
Mon Apr  2 20:16:01 2012 .170381 [001.2] [pid=21532] [tid=140596404573952] ido2db_query_objects_select_name1_name2(24x7,(null)) object id=39 selected
Mon Apr  2 20:16:01 2012 .170398 [001.2] [pid=21532] [tid=140596404573952] ido2db_get_object_id(39) end
Mon Apr  2 20:16:01 2012 .170407 [001.2] [pid=21532] [tid=140596404573952] ido2db_handle_hoststatusdata() LongLen:0
Mon Apr  2 20:16:01 2012 .170416 [001.2] [pid=21532] [tid=140596404573952] ido2db_query_insert_or_update_hoststatusdata_add() start
Mon Apr  2 20:16:01 2012 .170463 [001.2] [pid=21532] [tid=140596404573952] ido2db_query_insert_or_update_hoststatus() bind clob
Mon Apr  2 20:16:01 2012 .171070 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X5i,Null or empty
Mon Apr  2 20:16:01 2012 .171091 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X5u,Null or empty
Mon Apr  2 20:16:01 2012 .171247 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6i,62 Bytes requested
Mon Apr  2 20:16:01 2012 .171262 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6i,Next chunk 16 bytes from pos 0 (total 62) 
Mon Apr  2 20:16:01 2012 .172026 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6i,16 Bytes=16 Chars (total 16/62)   appended
Mon Apr  2 20:16:01 2012 .172044 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6i,Next chunk 16 bytes from pos 16 (total 62) 
Mon Apr  2 20:16:01 2012 .172633 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6i,16 Bytes=16 Chars (total 32/62)   appended
Mon Apr  2 20:16:01 2012 .172648 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6i,Next chunk 16 bytes from pos 32 (total 62) 
Mon Apr  2 20:16:01 2012 .173224 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6i,16 Bytes=16 Chars (total 48/62)   appended
Mon Apr  2 20:16:01 2012 .173239 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6i,Next chunk 14 bytes from pos 48 (total 62) 
Mon Apr  2 20:16:01 2012 .173817 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6i,14 Bytes=14 Chars (total 62/62)   appended
Mon Apr  2 20:16:01 2012 .173955 [001.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6i,Lob successfully written:62 bytes=62 chars 
Mon Apr  2 20:16:01 2012 .174091 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6u,62 Bytes requested
Mon Apr  2 20:16:01 2012 .174104 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6u,Next chunk 16 bytes from pos 0 (total 62) 
Mon Apr  2 20:16:01 2012 .174605 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6u,16 Bytes=16 Chars (total 16/62)   appended
Mon Apr  2 20:16:01 2012 .174620 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6u,Next chunk 16 bytes from pos 16 (total 62) 
Mon Apr  2 20:16:01 2012 .175147 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6u,16 Bytes=16 Chars (total 32/62)   appended
Mon Apr  2 20:16:01 2012 .175162 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6u,Next chunk 16 bytes from pos 32 (total 62) 
Mon Apr  2 20:16:01 2012 .175672 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6u,16 Bytes=16 Chars (total 48/62)   appended
Mon Apr  2 20:16:01 2012 .175686 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6u,Next chunk 14 bytes from pos 48 (total 62) 
Mon Apr  2 20:16:01 2012 .176171 [002.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6u,14 Bytes=14 Chars (total 62/62)   appended
Mon Apr  2 20:16:01 2012 .176279 [001.2] [pid=21532] [tid=140596404573952] ido2db_oci_bind_clob:Bind :X6u,Lob successfully written:62 bytes=62 chars 
Mon Apr  2 20:16:01 2012 .177952 [001.2] [pid=21532] [tid=140596404573952] ido2db_query_insert_or_update_hoststatus()  executed
Mon Apr  2 20:16:01 2012 .178387 [001.2] [pid=21532] [tid=140596404573952] ido2db_query_insert_or_update_hoststatusdata_add() end
Mon Apr  2 20:16:01 2012 .178401 [001.2] [pid=21532] [tid=140596404573952] ido2db_save_custom_variables() start
Mon Apr  2 20:16:01 2012 .178408 [001.2] [pid=21532] [tid=140596404573952] ido2db_save_custom_variables() end
Mon Apr  2 20:16:01 2012 .178415 [001.2] [pid=21532] [tid=140596404573952] ido2db_handle_hoststatusdata() end

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2012-04-03 11:14:23 +00:00

thanks looks better with smaller junks and the explicit counter. i'll go retest with 1024k junks, will post an update then.

Tue Apr  3 13:09:38 2012 .674240 [001.2] [pid=10849] [tid=47797967780800] ido2db_handle_hoststatusdata() start
Tue Apr  3 13:09:38 2012 .674249 [001.2] [pid=10849] [tid=47797967780800] ido2db_convert_standard_data_elements() start
Tue Apr  3 13:09:38 2012 .674257 [001.2] [pid=10849] [tid=47797967780800] ido2db_convert_standard_data_elements() end
Tue Apr  3 13:09:38 2012 .674271 [001.2] [pid=10849] [tid=47797967780800] ido2db_db_escape_string('OK - 2 plugins checked, 2 ok [please don':t run plugins as root!]') start
Tue Apr  3 13:09:38 2012 .674280 [001.2] [pid=10849] [tid=47797967780800] ido2db_db_escape_string end
Tue Apr  3 13:09:38 2012 .674288 [001.2] [pid=10849] [tid=47797967780800] ido2db_db_escape_string(' function Toggle(node) { if (node.nextSibling.style.display == 'none') { if (node.childNodes.length > 0) { node.childNodes.item(0).replaceData(0,1,String.fromCharCode(8211)) } node.nextSibling.style.display = 'block' } else { if (node.childNodes.length > 0) { node.childNodes.item(0).replaceData(0,1,'+') } node.nextSibling.style.display = 'none' } } – 1IPv4PING OK - Packet loss = 0%, RTA = 0.02 ms 2IPv6PING OK - Packet loss = 0%, RTA = 0.03 ms') start
Tue Apr  3 13:09:38 2012 .674302 [001.2] [pid=10849] [tid=47797967780800] ido2db_db_escape_string changed string (' function Toggle(node) { if (node.nextSibling.style.display == ''none'') { if (node.childNodes.length > 0) { node.childNodes.item(0).replaceData(0,1,String.fromCharCode(8211)) } node.nextSibling.style.display = ''block'' } else { if (node.childNodes.length > 0) { node.childNodes.item(0).replaceData(0,1,''+'') } node.nextSibling.style.display = ''none'' } } – 1IPv4PING OK - Packet loss = 0%, RTA = 0.02 ms 2IPv6PING OK - Packet loss = 0%, RTA = 0.03 ms')
Tue Apr  3 13:09:38 2012 .674316 [001.2] [pid=10849] [tid=47797967780800] ido2db_db_escape_string end
Tue Apr  3 13:09:38 2012 .674325 [001.2] [pid=10849] [tid=47797967780800] ido2db_db_escape_string('check_multi::check_multi::plugins=2 time=8.012411 IPv4::check_ping::rta=0.021000ms;3000.000000;5000.000000;0.000000 pl=0%;80;100;0 IPv6::check_ping::rta=0.030000ms;3000.000000;5000.000000;0.000000 pl=0%;80;100;0') start
Tue Apr  3 13:09:38 2012 .674333 [001.2] [pid=10849] [tid=47797967780800] ido2db_db_escape_string end
Tue Apr  3 13:09:38 2012 .674341 [001.2] [pid=10849] [tid=47797967780800] ido2db_db_escape_string('') start
Tue Apr  3 13:09:38 2012 .674349 [001.2] [pid=10849] [tid=47797967780800] ido2db_db_escape_string end
Tue Apr  3 13:09:38 2012 .674356 [001.2] [pid=10849] [tid=47797967780800] ido2db_db_escape_string('check_multi!check_multi_host_dualstack.cmd -r 1+2+4+8') start
Tue Apr  3 13:09:38 2012 .674364 [001.2] [pid=10849] [tid=47797967780800] ido2db_db_escape_string end
Tue Apr  3 13:09:38 2012 .674371 [001.2] [pid=10849] [tid=47797967780800] ido2db_get_object_id_with_insert() start
Tue Apr  3 13:09:38 2012 .674379 [001.2] [pid=10849] [tid=47797967780800] ido2db_get_object_id() start
Tue Apr  3 13:09:38 2012 .674387 [001.2] [pid=10849] [tid=47797967780800] ido2db_get_cached_object_id() start
Tue Apr  3 13:09:38 2012 .674394 [001.2] [pid=10849] [tid=47797967780800] ido2db_object_hashfunc() start
Tue Apr  3 13:09:38 2012 .674402 [001.2] [pid=10849] [tid=47797967780800] ido2db_object_hashfunc() end
Tue Apr  3 13:09:38 2012 .674409 [001.2] [pid=10849] [tid=47797967780800] ido2db_get_cached_object_id(0) end
Tue Apr  3 13:09:38 2012 .674419 [001.2] [pid=10849] [tid=47797967780800] ido2db_db_escape_string('localhostv6') start
Tue Apr  3 13:09:38 2012 .674427 [001.2] [pid=10849] [tid=47797967780800] ido2db_db_escape_string end
Tue Apr  3 13:09:38 2012 .674443 [001.2] [pid=10849] [tid=47797967780800] ido2db_oci_prepared_statement_bind_null_param() param=:X4
Tue Apr  3 13:09:38 2012 .676720 [001.2] [pid=10849] [tid=47797967780800] ido2db_query_objects_select_name1_name2(localhostv6,(null)) object id=4258 selected
Tue Apr  3 13:09:38 2012 .676749 [001.2] [pid=10849] [tid=47797967780800] ido2db_get_object_id(4258) end
Tue Apr  3 13:09:38 2012 .676763 [001.2] [pid=10849] [tid=47797967780800] ido2db_get_object_id_with_insert() start
Tue Apr  3 13:09:38 2012 .676776 [001.2] [pid=10849] [tid=47797967780800] ido2db_get_object_id() start
Tue Apr  3 13:09:38 2012 .676789 [001.2] [pid=10849] [tid=47797967780800] ido2db_get_cached_object_id() start
Tue Apr  3 13:09:38 2012 .676801 [001.2] [pid=10849] [tid=47797967780800] ido2db_object_hashfunc() start
Tue Apr  3 13:09:38 2012 .676814 [001.2] [pid=10849] [tid=47797967780800] ido2db_object_hashfunc() end
Tue Apr  3 13:09:38 2012 .676826 [001.2] [pid=10849] [tid=47797967780800] ido2db_get_cached_object_id(0) end
Tue Apr  3 13:09:38 2012 .676841 [001.2] [pid=10849] [tid=47797967780800] ido2db_db_escape_string('24x7') start
Tue Apr  3 13:09:38 2012 .676854 [001.2] [pid=10849] [tid=47797967780800] ido2db_db_escape_string end
Tue Apr  3 13:09:38 2012 .676875 [001.2] [pid=10849] [tid=47797967780800] ido2db_oci_prepared_statement_bind_null_param() param=:X4
Tue Apr  3 13:09:38 2012 .679246 [001.2] [pid=10849] [tid=47797967780800] ido2db_query_objects_select_name1_name2(24x7,(null)) object id=5 selected
Tue Apr  3 13:09:38 2012 .679279 [001.2] [pid=10849] [tid=47797967780800] ido2db_get_object_id(5) end
Tue Apr  3 13:09:38 2012 .679295 [001.2] [pid=10849] [tid=47797967780800] ido2db_handle_hoststatusdata() LongLen:1184
Tue Apr  3 13:09:38 2012 .679312 [001.2] [pid=10849] [tid=47797967780800] ido2db_query_insert_or_update_hoststatusdata_add() start
Tue Apr  3 13:09:38 2012 .679414 [001.2] [pid=10849] [tid=47797967780800] ido2db_query_insert_or_update_hoststatus() bind clob
Tue Apr  3 13:09:38 2012 .682716 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,1184 Bytes requested
Tue Apr  3 13:09:38 2012 .682745 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 0 (total 1184) 
Tue Apr  3 13:09:38 2012 .684298 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 16/1184)   appended
Tue Apr  3 13:09:38 2012 .684326 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 16 (total 1184) 
Tue Apr  3 13:09:38 2012 .685695 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 32/1184)   appended
Tue Apr  3 13:09:38 2012 .685724 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 32 (total 1184) 
Tue Apr  3 13:09:38 2012 .687370 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 48/1184)   appended
Tue Apr  3 13:09:38 2012 .687402 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 48 (total 1184) 
Tue Apr  3 13:09:38 2012 .688664 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 64/1184)   appended
Tue Apr  3 13:09:38 2012 .688705 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 64 (total 1184) 
Tue Apr  3 13:09:38 2012 .690339 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 80/1184)   appended
Tue Apr  3 13:09:38 2012 .690370 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 80 (total 1184) 
Tue Apr  3 13:09:38 2012 .691614 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 96/1184)   appended
Tue Apr  3 13:09:38 2012 .691652 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 96 (total 1184) 
Tue Apr  3 13:09:38 2012 .692880 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 112/1184)   appended
Tue Apr  3 13:09:38 2012 .692907 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 112 (total 1184) 
Tue Apr  3 13:09:38 2012 .694378 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 128/1184)   appended
Tue Apr  3 13:09:38 2012 .694405 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 128 (total 1184) 
Tue Apr  3 13:09:38 2012 .695724 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 144/1184)   appended
Tue Apr  3 13:09:38 2012 .695752 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 144 (total 1184) 
Tue Apr  3 13:09:38 2012 .697380 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 160/1184)   appended
Tue Apr  3 13:09:38 2012 .697410 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 160 (total 1184) 
Tue Apr  3 13:09:38 2012 .698690 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 176/1184)   appended
Tue Apr  3 13:09:38 2012 .698718 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 176 (total 1184) 
Tue Apr  3 13:09:38 2012 .700356 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 192/1184)   appended
Tue Apr  3 13:09:38 2012 .700386 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 192 (total 1184) 
Tue Apr  3 13:09:38 2012 .708374 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 208/1184)   appended
Tue Apr  3 13:09:38 2012 .708415 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 208 (total 1184) 
Tue Apr  3 13:09:38 2012 .709920 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 224/1184)   appended
Tue Apr  3 13:09:38 2012 .709952 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 224 (total 1184) 
Tue Apr  3 13:09:38 2012 .711279 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 240/1184)   appended
Tue Apr  3 13:09:38 2012 .711311 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 240 (total 1184) 
Tue Apr  3 13:09:38 2012 .712907 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 256/1184)   appended
Tue Apr  3 13:09:38 2012 .712937 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 256 (total 1184) 
Tue Apr  3 13:09:38 2012 .714202 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 272/1184)   appended
Tue Apr  3 13:09:38 2012 .714231 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 272 (total 1184) 
Tue Apr  3 13:09:38 2012 .715938 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 288/1184)   appended
Tue Apr  3 13:09:38 2012 .715966 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 288 (total 1184) 
Tue Apr  3 13:09:38 2012 .717270 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 304/1184)   appended
Tue Apr  3 13:09:38 2012 .717299 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 304 (total 1184) 
Tue Apr  3 13:09:38 2012 .718689 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 320/1184)   appended
Tue Apr  3 13:09:38 2012 .718718 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 320 (total 1184) 
Tue Apr  3 13:09:38 2012 .720027 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 336/1184)   appended
Tue Apr  3 13:09:38 2012 .720055 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 336 (total 1184) 
Tue Apr  3 13:09:38 2012 .721354 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 352/1184)   appended
Tue Apr  3 13:09:38 2012 .721382 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 352 (total 1184) 
Tue Apr  3 13:09:38 2012 .722751 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 368/1184)   appended
Tue Apr  3 13:09:38 2012 .722780 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 368 (total 1184) 
Tue Apr  3 13:09:38 2012 .724507 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 384/1184)   appended
Tue Apr  3 13:09:38 2012 .724539 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 384 (total 1184) 
Tue Apr  3 13:09:38 2012 .725921 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 400/1184)   appended
Tue Apr  3 13:09:38 2012 .725951 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 400 (total 1184) 
Tue Apr  3 13:09:38 2012 .727453 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 416/1184)   appended
Tue Apr  3 13:09:38 2012 .727482 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 416 (total 1184) 
Tue Apr  3 13:09:38 2012 .728909 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 432/1184)   appended
Tue Apr  3 13:09:38 2012 .728947 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 432 (total 1184) 
Tue Apr  3 13:09:38 2012 .730438 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 448/1184)   appended
Tue Apr  3 13:09:38 2012 .730467 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 448 (total 1184) 
Tue Apr  3 13:09:38 2012 .731903 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 464/1184)   appended
Tue Apr  3 13:09:38 2012 .731933 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 464 (total 1184) 
Tue Apr  3 13:09:38 2012 .733921 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 480/1184)   appended
Tue Apr  3 13:09:38 2012 .733950 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 480 (total 1184) 
Tue Apr  3 13:09:38 2012 .735524 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 496/1184)   appended
Tue Apr  3 13:09:38 2012 .735553 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 496 (total 1184) 
Tue Apr  3 13:09:38 2012 .736915 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 512/1184)   appended
Tue Apr  3 13:09:38 2012 .736947 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 512 (total 1184) 
Tue Apr  3 13:09:38 2012 .738301 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 528/1184)   appended
Tue Apr  3 13:09:38 2012 .738343 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 528 (total 1184) 
Tue Apr  3 13:09:38 2012 .739949 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 544/1184)   appended
Tue Apr  3 13:09:38 2012 .739978 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 544 (total 1184) 
Tue Apr  3 13:09:38 2012 .741305 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 560/1184)   appended
Tue Apr  3 13:09:38 2012 .741333 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 560 (total 1184) 
Tue Apr  3 13:09:38 2012 .742942 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 576/1184)   appended
Tue Apr  3 13:09:38 2012 .742973 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 576 (total 1184) 
Tue Apr  3 13:09:38 2012 .744393 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 592/1184)   appended
Tue Apr  3 13:09:38 2012 .744422 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 592 (total 1184) 
Tue Apr  3 13:09:38 2012 .745981 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 608/1184)   appended
Tue Apr  3 13:09:38 2012 .746009 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 608 (total 1184) 
Tue Apr  3 13:09:38 2012 .747531 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 624/1184)   appended
Tue Apr  3 13:09:38 2012 .747561 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 624 (total 1184) 
Tue Apr  3 13:09:38 2012 .748975 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 640/1184)   appended
Tue Apr  3 13:09:38 2012 .749018 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 640 (total 1184) 
Tue Apr  3 13:09:38 2012 .750407 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 656/1184)   appended
Tue Apr  3 13:09:38 2012 .750438 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 656 (total 1184) 
Tue Apr  3 13:09:38 2012 .751980 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 672/1184)   appended
Tue Apr  3 13:09:38 2012 .752012 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 672 (total 1184) 
Tue Apr  3 13:09:38 2012 .753430 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 688/1184)   appended
Tue Apr  3 13:09:38 2012 .753460 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 688 (total 1184) 
Tue Apr  3 13:09:38 2012 .754954 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 704/1184)   appended
Tue Apr  3 13:09:38 2012 .754982 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 704 (total 1184) 
Tue Apr  3 13:09:38 2012 .756431 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 720/1184)   appended
Tue Apr  3 13:09:38 2012 .756459 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 720 (total 1184) 
Tue Apr  3 13:09:38 2012 .757978 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 736/1184)   appended
Tue Apr  3 13:09:38 2012 .758006 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 736 (total 1184) 
Tue Apr  3 13:09:38 2012 .759427 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 752/1184)   appended
Tue Apr  3 13:09:38 2012 .759455 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 752 (total 1184) 
Tue Apr  3 13:09:38 2012 .760928 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 768/1184)   appended
Tue Apr  3 13:09:38 2012 .760966 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 768 (total 1184) 
Tue Apr  3 13:09:38 2012 .762403 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 784/1184)   appended
Tue Apr  3 13:09:38 2012 .762431 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 784 (total 1184) 
Tue Apr  3 13:09:38 2012 .763957 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 800/1184)   appended
Tue Apr  3 13:09:38 2012 .763987 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 800 (total 1184) 
Tue Apr  3 13:09:38 2012 .765494 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 816/1184)   appended
Tue Apr  3 13:09:38 2012 .765523 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 816 (total 1184) 
Tue Apr  3 13:09:38 2012 .766911 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 832/1184)   appended
Tue Apr  3 13:09:38 2012 .766939 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 832 (total 1184) 
Tue Apr  3 13:09:38 2012 .768436 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 848/1184)   appended
Tue Apr  3 13:09:38 2012 .768464 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 848 (total 1184) 
Tue Apr  3 13:09:38 2012 .770058 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 864/1184)   appended
Tue Apr  3 13:09:38 2012 .770088 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 864 (total 1184) 
Tue Apr  3 13:09:38 2012 .771942 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 880/1184)   appended
Tue Apr  3 13:09:38 2012 .771969 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 880 (total 1184) 
Tue Apr  3 13:09:38 2012 .773420 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 896/1184)   appended
Tue Apr  3 13:09:38 2012 .773448 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 896 (total 1184) 
Tue Apr  3 13:09:38 2012 .774966 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 912/1184)   appended
Tue Apr  3 13:09:38 2012 .774995 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 912 (total 1184) 
Tue Apr  3 13:09:38 2012 .776423 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 928/1184)   appended
Tue Apr  3 13:09:38 2012 .776452 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 928 (total 1184) 
Tue Apr  3 13:09:38 2012 .777964 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 944/1184)   appended
Tue Apr  3 13:09:38 2012 .777993 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 944 (total 1184) 
Tue Apr  3 13:09:38 2012 .779317 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 960/1184)   appended
Tue Apr  3 13:09:38 2012 .779345 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 960 (total 1184) 
Tue Apr  3 13:09:38 2012 .781307 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 976/1184)   appended
Tue Apr  3 13:09:38 2012 .781339 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 976 (total 1184) 
Tue Apr  3 13:09:38 2012 .783072 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 992/1184)   appended
Tue Apr  3 13:09:38 2012 .783101 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 992 (total 1184) 
Tue Apr  3 13:09:38 2012 .784507 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 1008/1184)   appended
Tue Apr  3 13:09:38 2012 .784537 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 1008 (total 1184) 
Tue Apr  3 13:09:38 2012 .785987 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 1024/1184)   appended
Tue Apr  3 13:09:38 2012 .786017 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 1024 (total 1184) 
Tue Apr  3 13:09:38 2012 .787436 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 1040/1184)   appended
Tue Apr  3 13:09:38 2012 .787466 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 1040 (total 1184) 
Tue Apr  3 13:09:38 2012 .788858 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 1056/1184)   appended
Tue Apr  3 13:09:38 2012 .788889 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 1056 (total 1184) 
Tue Apr  3 13:09:38 2012 .790419 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 1072/1184)   appended
Tue Apr  3 13:09:38 2012 .790462 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 1072 (total 1184) 
Tue Apr  3 13:09:38 2012 .791947 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 1088/1184)   appended
Tue Apr  3 13:09:38 2012 .791978 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 1088 (total 1184) 
Tue Apr  3 13:09:38 2012 .793538 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 1104/1184)   appended
Tue Apr  3 13:09:38 2012 .793570 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 1104 (total 1184) 
Tue Apr  3 13:09:38 2012 .794992 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 1120/1184)   appended
Tue Apr  3 13:09:38 2012 .795021 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 1120 (total 1184) 
Tue Apr  3 13:09:38 2012 .796453 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 1136/1184)   appended
Tue Apr  3 13:09:38 2012 .796480 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 1136 (total 1184) 
Tue Apr  3 13:09:38 2012 .797941 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 1152/1184)   appended
Tue Apr  3 13:09:38 2012 .797971 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 1152 (total 1184) 
Tue Apr  3 13:09:38 2012 .799485 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 1168/1184)   appended
Tue Apr  3 13:09:38 2012 .799515 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Next chunk 16 bytes from pos 1168 (total 1184) 
Tue Apr  3 13:09:38 2012 .800995 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,16 Bytes=16 Chars (total 1184/1184)   appended
Tue Apr  3 13:09:38 2012 .801673 [001.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5i,Lob successfully written:1184 bytes=1184 chars 
Tue Apr  3 13:09:38 2012 .802375 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,1184 Bytes requested
Tue Apr  3 13:09:38 2012 .802402 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 0 (total 1184) 
Tue Apr  3 13:09:38 2012 .803911 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 16/1184)   appended
Tue Apr  3 13:09:38 2012 .803941 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 16 (total 1184) 
Tue Apr  3 13:09:38 2012 .805356 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 32/1184)   appended
Tue Apr  3 13:09:38 2012 .805389 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 32 (total 1184) 
Tue Apr  3 13:09:38 2012 .806934 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 48/1184)   appended
Tue Apr  3 13:09:38 2012 .806963 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 48 (total 1184) 
Tue Apr  3 13:09:38 2012 .808463 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 64/1184)   appended
Tue Apr  3 13:09:38 2012 .808491 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 64 (total 1184) 
Tue Apr  3 13:09:38 2012 .809889 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 80/1184)   appended
Tue Apr  3 13:09:38 2012 .809915 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 80 (total 1184) 
Tue Apr  3 13:09:38 2012 .811435 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 96/1184)   appended
Tue Apr  3 13:09:38 2012 .811453 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 96 (total 1184) 
Tue Apr  3 13:09:38 2012 .812953 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 112/1184)   appended
Tue Apr  3 13:09:38 2012 .812970 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 112 (total 1184) 
Tue Apr  3 13:09:38 2012 .814432 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 128/1184)   appended
Tue Apr  3 13:09:38 2012 .814450 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 128 (total 1184) 
Tue Apr  3 13:09:38 2012 .815928 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 144/1184)   appended
Tue Apr  3 13:09:38 2012 .815945 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 144 (total 1184) 
Tue Apr  3 13:09:38 2012 .817394 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 160/1184)   appended
Tue Apr  3 13:09:38 2012 .817411 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 160 (total 1184) 
Tue Apr  3 13:09:38 2012 .818934 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 176/1184)   appended
Tue Apr  3 13:09:38 2012 .818951 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 176 (total 1184) 
Tue Apr  3 13:09:38 2012 .820316 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 192/1184)   appended
Tue Apr  3 13:09:38 2012 .820333 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 192 (total 1184) 
Tue Apr  3 13:09:38 2012 .821943 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 208/1184)   appended
Tue Apr  3 13:09:38 2012 .821961 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 208 (total 1184) 
Tue Apr  3 13:09:38 2012 .823408 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 224/1184)   appended
Tue Apr  3 13:09:38 2012 .823424 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 224 (total 1184) 
Tue Apr  3 13:09:38 2012 .824920 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 240/1184)   appended
Tue Apr  3 13:09:38 2012 .824936 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 240 (total 1184) 
Tue Apr  3 13:09:38 2012 .826226 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 256/1184)   appended
Tue Apr  3 13:09:38 2012 .826242 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 256 (total 1184) 
Tue Apr  3 13:09:38 2012 .827955 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 272/1184)   appended
Tue Apr  3 13:09:38 2012 .827976 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 272 (total 1184) 
Tue Apr  3 13:09:38 2012 .829400 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 288/1184)   appended
Tue Apr  3 13:09:38 2012 .829418 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 288 (total 1184) 
Tue Apr  3 13:09:38 2012 .830948 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 304/1184)   appended
Tue Apr  3 13:09:38 2012 .830975 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 304 (total 1184) 
Tue Apr  3 13:09:38 2012 .832389 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 320/1184)   appended
Tue Apr  3 13:09:38 2012 .832405 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 320 (total 1184) 
Tue Apr  3 13:09:38 2012 .833839 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 336/1184)   appended
Tue Apr  3 13:09:38 2012 .833856 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 336 (total 1184) 
Tue Apr  3 13:09:38 2012 .835119 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 352/1184)   appended
Tue Apr  3 13:09:38 2012 .835136 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 352 (total 1184) 
Tue Apr  3 13:09:38 2012 .836888 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 368/1184)   appended
Tue Apr  3 13:09:38 2012 .836905 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 368 (total 1184) 
Tue Apr  3 13:09:38 2012 .838176 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 384/1184)   appended
Tue Apr  3 13:09:38 2012 .838193 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 384 (total 1184) 
Tue Apr  3 13:09:38 2012 .839481 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 400/1184)   appended
Tue Apr  3 13:09:38 2012 .839498 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 400 (total 1184) 
Tue Apr  3 13:09:38 2012 .840857 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 416/1184)   appended
Tue Apr  3 13:09:38 2012 .840878 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 416 (total 1184) 
Tue Apr  3 13:09:38 2012 .842334 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 432/1184)   appended
Tue Apr  3 13:09:38 2012 .842353 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 432 (total 1184) 
Tue Apr  3 13:09:38 2012 .843914 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 448/1184)   appended
Tue Apr  3 13:09:38 2012 .843933 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 448 (total 1184) 
Tue Apr  3 13:09:38 2012 .845285 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 464/1184)   appended
Tue Apr  3 13:09:38 2012 .845308 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 464 (total 1184) 
Tue Apr  3 13:09:38 2012 .846953 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 480/1184)   appended
Tue Apr  3 13:09:38 2012 .846971 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 480 (total 1184) 
Tue Apr  3 13:09:38 2012 .848262 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 496/1184)   appended
Tue Apr  3 13:09:38 2012 .848280 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 496 (total 1184) 
Tue Apr  3 13:09:38 2012 .849562 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 512/1184)   appended
Tue Apr  3 13:09:38 2012 .849579 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 512 (total 1184) 
Tue Apr  3 13:09:38 2012 .850935 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 528/1184)   appended
Tue Apr  3 13:09:38 2012 .850953 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 528 (total 1184) 
Tue Apr  3 13:09:38 2012 .852312 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 544/1184)   appended
Tue Apr  3 13:09:38 2012 .852329 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 544 (total 1184) 
Tue Apr  3 13:09:38 2012 .853938 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 560/1184)   appended
Tue Apr  3 13:09:38 2012 .853955 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 560 (total 1184) 
Tue Apr  3 13:09:38 2012 .855305 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 576/1184)   appended
Tue Apr  3 13:09:38 2012 .855322 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 576 (total 1184) 
Tue Apr  3 13:09:38 2012 .857265 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 592/1184)   appended
Tue Apr  3 13:09:38 2012 .857286 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 592 (total 1184) 
Tue Apr  3 13:09:38 2012 .858701 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 608/1184)   appended
Tue Apr  3 13:09:38 2012 .858723 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 608 (total 1184) 
Tue Apr  3 13:09:38 2012 .860287 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 624/1184)   appended
Tue Apr  3 13:09:38 2012 .860306 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 624 (total 1184) 
Tue Apr  3 13:09:38 2012 .861594 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 640/1184)   appended
Tue Apr  3 13:09:38 2012 .861613 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 640 (total 1184) 
Tue Apr  3 13:09:38 2012 .862972 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 656/1184)   appended
Tue Apr  3 13:09:38 2012 .862991 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 656 (total 1184) 
Tue Apr  3 13:09:38 2012 .864316 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 672/1184)   appended
Tue Apr  3 13:09:38 2012 .864336 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 672 (total 1184) 
Tue Apr  3 13:09:38 2012 .865923 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 688/1184)   appended
Tue Apr  3 13:09:38 2012 .865940 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 688 (total 1184) 
Tue Apr  3 13:09:38 2012 .867288 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 704/1184)   appended
Tue Apr  3 13:09:38 2012 .867304 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 704 (total 1184) 
Tue Apr  3 13:09:38 2012 .868947 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 720/1184)   appended
Tue Apr  3 13:09:38 2012 .868970 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 720 (total 1184) 
Tue Apr  3 13:09:38 2012 .870285 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 736/1184)   appended
Tue Apr  3 13:09:38 2012 .870314 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 736 (total 1184) 
Tue Apr  3 13:09:38 2012 .871949 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 752/1184)   appended
Tue Apr  3 13:09:38 2012 .871968 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 752 (total 1184) 
Tue Apr  3 13:09:38 2012 .873267 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 768/1184)   appended
Tue Apr  3 13:09:38 2012 .873284 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 768 (total 1184) 
Tue Apr  3 13:09:38 2012 .874982 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 784/1184)   appended
Tue Apr  3 13:09:38 2012 .875002 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 784 (total 1184) 
Tue Apr  3 13:09:38 2012 .876289 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 800/1184)   appended
Tue Apr  3 13:09:38 2012 .876310 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 800 (total 1184) 
Tue Apr  3 13:09:38 2012 .877642 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 816/1184)   appended
Tue Apr  3 13:09:38 2012 .877661 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 816 (total 1184) 
Tue Apr  3 13:09:38 2012 .879428 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 832/1184)   appended
Tue Apr  3 13:09:38 2012 .879447 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 832 (total 1184) 
Tue Apr  3 13:09:38 2012 .880913 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 848/1184)   appended
Tue Apr  3 13:09:38 2012 .880932 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 848 (total 1184) 
Tue Apr  3 13:09:38 2012 .882430 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 864/1184)   appended
Tue Apr  3 13:09:38 2012 .882448 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 864 (total 1184) 
Tue Apr  3 13:09:38 2012 .883928 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 880/1184)   appended
Tue Apr  3 13:09:38 2012 .883947 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 880 (total 1184) 
Tue Apr  3 13:09:38 2012 .885486 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 896/1184)   appended
Tue Apr  3 13:09:38 2012 .885504 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 896 (total 1184) 
Tue Apr  3 13:09:38 2012 .886868 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 912/1184)   appended
Tue Apr  3 13:09:38 2012 .886886 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 912 (total 1184) 
Tue Apr  3 13:09:38 2012 .888213 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 928/1184)   appended
Tue Apr  3 13:09:38 2012 .888231 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 928 (total 1184) 
Tue Apr  3 13:09:38 2012 .889569 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 944/1184)   appended
Tue Apr  3 13:09:38 2012 .889588 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 944 (total 1184) 
Tue Apr  3 13:09:38 2012 .890920 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 960/1184)   appended
Tue Apr  3 13:09:38 2012 .890941 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 960 (total 1184) 
Tue Apr  3 13:09:38 2012 .892406 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 976/1184)   appended
Tue Apr  3 13:09:38 2012 .892425 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 976 (total 1184) 
Tue Apr  3 13:09:38 2012 .893865 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 992/1184)   appended
Tue Apr  3 13:09:38 2012 .893884 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 992 (total 1184) 
Tue Apr  3 13:09:38 2012 .895188 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 1008/1184)   appended
Tue Apr  3 13:09:38 2012 .895207 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 1008 (total 1184) 
Tue Apr  3 13:09:38 2012 .896558 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 1024/1184)   appended
Tue Apr  3 13:09:38 2012 .896577 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 1024 (total 1184) 
Tue Apr  3 13:09:38 2012 .897494 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 1040/1184)   appended
Tue Apr  3 13:09:38 2012 .897514 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 1040 (total 1184) 
Tue Apr  3 13:09:38 2012 .898557 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 1056/1184)   appended
Tue Apr  3 13:09:38 2012 .898576 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 1056 (total 1184) 
Tue Apr  3 13:09:38 2012 .899634 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 1072/1184)   appended
Tue Apr  3 13:09:38 2012 .899653 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 1072 (total 1184) 
Tue Apr  3 13:09:38 2012 .900754 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 1088/1184)   appended
Tue Apr  3 13:09:38 2012 .900774 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 1088 (total 1184) 
Tue Apr  3 13:09:38 2012 .902097 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 1104/1184)   appended
Tue Apr  3 13:09:38 2012 .902117 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 1104 (total 1184) 
Tue Apr  3 13:09:38 2012 .903218 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 1120/1184)   appended
Tue Apr  3 13:09:38 2012 .903238 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 1120 (total 1184) 
Tue Apr  3 13:09:38 2012 .904656 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 1136/1184)   appended
Tue Apr  3 13:09:38 2012 .904674 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 1136 (total 1184) 
Tue Apr  3 13:09:38 2012 .906094 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 1152/1184)   appended
Tue Apr  3 13:09:38 2012 .906111 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 1152 (total 1184) 
Tue Apr  3 13:09:38 2012 .907265 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 1168/1184)   appended
Tue Apr  3 13:09:38 2012 .907292 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Next chunk 16 bytes from pos 1168 (total 1184) 
Tue Apr  3 13:09:38 2012 .908673 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,16 Bytes=16 Chars (total 1184/1184)   appended
Tue Apr  3 13:09:38 2012 .909220 [001.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X5u,Lob successfully written:1184 bytes=1184 chars 
Tue Apr  3 13:09:38 2012 .910132 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,211 Bytes requested
Tue Apr  3 13:09:38 2012 .910150 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,Next chunk 16 bytes from pos 0 (total 211) 
Tue Apr  3 13:09:38 2012 .911172 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,16 Bytes=16 Chars (total 16/211)   appended
Tue Apr  3 13:09:38 2012 .911191 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,Next chunk 16 bytes from pos 16 (total 211) 
Tue Apr  3 13:09:38 2012 .912197 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,16 Bytes=16 Chars (total 32/211)   appended
Tue Apr  3 13:09:38 2012 .912216 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,Next chunk 16 bytes from pos 32 (total 211) 
Tue Apr  3 13:09:38 2012 .913120 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,16 Bytes=16 Chars (total 48/211)   appended
Tue Apr  3 13:09:38 2012 .913139 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,Next chunk 16 bytes from pos 48 (total 211) 
Tue Apr  3 13:09:38 2012 .914088 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,16 Bytes=16 Chars (total 64/211)   appended
Tue Apr  3 13:09:38 2012 .914106 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,Next chunk 16 bytes from pos 64 (total 211) 
Tue Apr  3 13:09:38 2012 .915094 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,16 Bytes=16 Chars (total 80/211)   appended
Tue Apr  3 13:09:38 2012 .915113 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,Next chunk 16 bytes from pos 80 (total 211) 
Tue Apr  3 13:09:38 2012 .916141 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,16 Bytes=16 Chars (total 96/211)   appended
Tue Apr  3 13:09:38 2012 .916159 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,Next chunk 16 bytes from pos 96 (total 211) 
Tue Apr  3 13:09:38 2012 .917179 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,16 Bytes=16 Chars (total 112/211)   appended
Tue Apr  3 13:09:38 2012 .917197 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,Next chunk 16 bytes from pos 112 (total 211) 
Tue Apr  3 13:09:38 2012 .918278 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,16 Bytes=16 Chars (total 128/211)   appended
Tue Apr  3 13:09:38 2012 .918296 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,Next chunk 16 bytes from pos 128 (total 211) 
Tue Apr  3 13:09:38 2012 .919204 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,16 Bytes=16 Chars (total 144/211)   appended
Tue Apr  3 13:09:38 2012 .919222 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,Next chunk 16 bytes from pos 144 (total 211) 
Tue Apr  3 13:09:38 2012 .920101 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,16 Bytes=16 Chars (total 160/211)   appended
Tue Apr  3 13:09:38 2012 .920118 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,Next chunk 16 bytes from pos 160 (total 211) 
Tue Apr  3 13:09:38 2012 .921064 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,16 Bytes=16 Chars (total 176/211)   appended
Tue Apr  3 13:09:38 2012 .921082 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,Next chunk 16 bytes from pos 176 (total 211) 
Tue Apr  3 13:09:38 2012 .922129 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,16 Bytes=16 Chars (total 192/211)   appended
Tue Apr  3 13:09:38 2012 .922154 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,Next chunk 16 bytes from pos 192 (total 211) 
Tue Apr  3 13:09:38 2012 .923086 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,16 Bytes=16 Chars (total 208/211)   appended
Tue Apr  3 13:09:38 2012 .923106 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,Next chunk 3 bytes from pos 208 (total 211) 
Tue Apr  3 13:09:38 2012 .924315 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,3 Bytes=3 Chars (total 211/211)   appended
Tue Apr  3 13:09:38 2012 .925150 [001.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6i,Lob write warning:len 211, but lob size 211 bytes=1395 chars (last chunk '0;0')
Tue Apr  3 13:09:38 2012 .925876 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,211 Bytes requested
Tue Apr  3 13:09:38 2012 .925894 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,Next chunk 16 bytes from pos 0 (total 211) 
Tue Apr  3 13:09:38 2012 .927075 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,16 Bytes=16 Chars (total 16/211)   appended
Tue Apr  3 13:09:38 2012 .927092 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,Next chunk 16 bytes from pos 16 (total 211) 
Tue Apr  3 13:09:38 2012 .928290 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,16 Bytes=16 Chars (total 32/211)   appended
Tue Apr  3 13:09:38 2012 .928310 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,Next chunk 16 bytes from pos 32 (total 211) 
Tue Apr  3 13:09:38 2012 .929351 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,16 Bytes=16 Chars (total 48/211)   appended
Tue Apr  3 13:09:38 2012 .929369 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,Next chunk 16 bytes from pos 48 (total 211) 
Tue Apr  3 13:09:38 2012 .930649 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,16 Bytes=16 Chars (total 64/211)   appended
Tue Apr  3 13:09:38 2012 .930666 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,Next chunk 16 bytes from pos 64 (total 211) 
Tue Apr  3 13:09:38 2012 .932020 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,16 Bytes=16 Chars (total 80/211)   appended
Tue Apr  3 13:09:38 2012 .932038 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,Next chunk 16 bytes from pos 80 (total 211) 
Tue Apr  3 13:09:38 2012 .932933 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,16 Bytes=16 Chars (total 96/211)   appended
Tue Apr  3 13:09:38 2012 .932954 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,Next chunk 16 bytes from pos 96 (total 211) 
Tue Apr  3 13:09:38 2012 .934052 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,16 Bytes=16 Chars (total 112/211)   appended
Tue Apr  3 13:09:38 2012 .934070 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,Next chunk 16 bytes from pos 112 (total 211) 
Tue Apr  3 13:09:38 2012 .935211 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,16 Bytes=16 Chars (total 128/211)   appended
Tue Apr  3 13:09:38 2012 .935231 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,Next chunk 16 bytes from pos 128 (total 211) 
Tue Apr  3 13:09:38 2012 .936253 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,16 Bytes=16 Chars (total 144/211)   appended
Tue Apr  3 13:09:38 2012 .936272 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,Next chunk 16 bytes from pos 144 (total 211) 
Tue Apr  3 13:09:38 2012 .937606 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,16 Bytes=16 Chars (total 160/211)   appended
Tue Apr  3 13:09:38 2012 .937624 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,Next chunk 16 bytes from pos 160 (total 211) 
Tue Apr  3 13:09:38 2012 .939063 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,16 Bytes=16 Chars (total 176/211)   appended
Tue Apr  3 13:09:38 2012 .939081 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,Next chunk 16 bytes from pos 176 (total 211) 
Tue Apr  3 13:09:38 2012 .940344 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,16 Bytes=16 Chars (total 192/211)   appended
Tue Apr  3 13:09:38 2012 .940361 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,Next chunk 16 bytes from pos 192 (total 211) 
Tue Apr  3 13:09:38 2012 .941553 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,16 Bytes=16 Chars (total 208/211)   appended
Tue Apr  3 13:09:38 2012 .941571 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,Next chunk 3 bytes from pos 208 (total 211) 
Tue Apr  3 13:09:38 2012 .942563 [002.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,3 Bytes=3 Chars (total 211/211)   appended
Tue Apr  3 13:09:38 2012 .943112 [001.2] [pid=10849] [tid=47797967780800] ido2db_oci_bind_clob:Bind :X6u,Lob write warning:len 211, but lob size 211 bytes=1395 chars (last chunk '0;0')
Tue Apr  3 13:09:38 2012 .946908 [001.2] [pid=10849] [tid=47797967780800] ido2db_query_insert_or_update_hoststatus()  executed
Tue Apr  3 13:09:38 2012 .949539 [001.2] [pid=10849] [tid=47797967780800] ido2db_query_insert_or_update_hoststatusdata_add() end
Tue Apr  3 13:09:38 2012 .949558 [001.2] [pid=10849] [tid=47797967780800] ido2db_save_custom_variables() start
Tue Apr  3 13:09:38 2012 .949567 [001.2] [pid=10849] [tid=47797967780800] ido2db_save_custom_variables() end
Tue Apr  3 13:09:38 2012 .949575 [001.2] [pid=10849] [tid=47797967780800] ido2db_handle_hoststatusdata() end

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2012-04-03 11:26:19 +00:00

  • Done % changed from 50 to 90

looks good with 1024. feel free to change accordingly to your tests.

Tue Apr  3 13:20:31 2012 .831851 [001.2] [pid=16671] [tid=47373143706560] ido2db_handle_hoststatusdata() start
Tue Apr  3 13:20:31 2012 .831859 [001.2] [pid=16671] [tid=47373143706560] ido2db_convert_standard_data_elements() start
Tue Apr  3 13:20:31 2012 .831867 [001.2] [pid=16671] [tid=47373143706560] ido2db_convert_standard_data_elements() end
Tue Apr  3 13:20:31 2012 .831881 [001.2] [pid=16671] [tid=47373143706560] ido2db_db_escape_string('OK - 2 plugins checked, 2 ok [please don':t run plugins as root!]') start
Tue Apr  3 13:20:31 2012 .831891 [001.2] [pid=16671] [tid=47373143706560] ido2db_db_escape_string end
Tue Apr  3 13:20:31 2012 .831898 [001.2] [pid=16671] [tid=47373143706560] ido2db_db_escape_string(' function Toggle(node) { if (node.nextSibling.style.display == 'none') { if (node.childNodes.length > 0
) { node.childNodes.item(0).replaceData(0,1,String.fromCharCode(8211)) } node.nextSibling.style.display = 'block' } else { if (node.childNodes.length > 0) { node.childNodes.item(0).replaceData(0,1,'+') } node.nextSibling.style.displ
ay = 'none' } } – 1IPv4PING OK - Packet loss = 0%, RTA = 0.04 ms 2IPv6PING OK - Packet loss = 0%, RTA = 0.04 ms') start
Tue Apr  3 13:20:31 2012 .831912 [001.2] [pid=16671] [tid=47373143706560] ido2db_db_escape_string changed string (' function Toggle(node) { if (node.nextSibling.style.display == ''none'') { if (node.c
hildNodes.length > 0) { node.childNodes.item(0).replaceData(0,1,String.fromCharCode(8211)) } node.nextSibling.style.display = ''block'' } else { if (node.childNodes.length > 0) { node.childNodes.item(0).replaceData(0,1,''+'') } node
.nextSibling.style.display = ''none'' } } – 1IPv4PING OK - Packet loss = 0%, RTA = 0.04 ms 2IPv6PING OK - Packet loss = 0%, RTA = 0.04 ms')
Tue Apr  3 13:20:31 2012 .831929 [001.2] [pid=16671] [tid=47373143706560] ido2db_db_escape_string end
Tue Apr  3 13:20:31 2012 .831938 [001.2] [pid=16671] [tid=47373143706560] ido2db_db_escape_string('check_multi::check_multi::plugins=2 time=8.027867 IPv4::check_ping::rta=0.037000ms;3000.000000;5000.000000;0.000000 pl=0%;80;100;0 IP
v6::check_ping::rta=0.037000ms;3000.000000;5000.000000;0.000000 pl=0%;80;100;0') start
Tue Apr  3 13:20:31 2012 .831958 [001.2] [pid=16671] [tid=47373143706560] ido2db_db_escape_string end
Tue Apr  3 13:20:31 2012 .831968 [001.2] [pid=16671] [tid=47373143706560] ido2db_db_escape_string('') start
Tue Apr  3 13:20:31 2012 .831976 [001.2] [pid=16671] [tid=47373143706560] ido2db_db_escape_string end
Tue Apr  3 13:20:31 2012 .831983 [001.2] [pid=16671] [tid=47373143706560] ido2db_db_escape_string('check_multi!check_multi_host_dualstack.cmd -r 1+2+4+8') start
Tue Apr  3 13:20:31 2012 .831991 [001.2] [pid=16671] [tid=47373143706560] ido2db_db_escape_string end
Tue Apr  3 13:20:31 2012 .831998 [001.2] [pid=16671] [tid=47373143706560] ido2db_get_object_id_with_insert() start
Tue Apr  3 13:20:31 2012 .832006 [001.2] [pid=16671] [tid=47373143706560] ido2db_get_object_id() start
Tue Apr  3 13:20:31 2012 .832014 [001.2] [pid=16671] [tid=47373143706560] ido2db_get_cached_object_id() start
Tue Apr  3 13:20:31 2012 .832022 [001.2] [pid=16671] [tid=47373143706560] ido2db_object_hashfunc() start
Tue Apr  3 13:20:31 2012 .832029 [001.2] [pid=16671] [tid=47373143706560] ido2db_object_hashfunc() end
Tue Apr  3 13:20:31 2012 .832037 [001.2] [pid=16671] [tid=47373143706560] ido2db_get_cached_object_id(0) end
Tue Apr  3 13:20:31 2012 .832047 [001.2] [pid=16671] [tid=47373143706560] ido2db_db_escape_string('localhostv6') start
Tue Apr  3 13:20:31 2012 .832055 [001.2] [pid=16671] [tid=47373143706560] ido2db_db_escape_string end
Tue Apr  3 13:20:31 2012 .832073 [001.2] [pid=16671] [tid=47373143706560] ido2db_oci_prepared_statement_bind_null_param() param=:X4
Tue Apr  3 13:20:31 2012 .835436 [001.2] [pid=16671] [tid=47373143706560] ido2db_query_objects_select_name1_name2(localhostv6,(null)) object id=4258 selected
Tue Apr  3 13:20:31 2012 .835459 [001.2] [pid=16671] [tid=47373143706560] ido2db_get_object_id(4258) end
Tue Apr  3 13:20:31 2012 .835468 [001.2] [pid=16671] [tid=47373143706560] ido2db_get_object_id_with_insert() start
Tue Apr  3 13:20:31 2012 .835476 [001.2] [pid=16671] [tid=47373143706560] ido2db_get_object_id() start
Tue Apr  3 13:20:31 2012 .835484 [001.2] [pid=16671] [tid=47373143706560] ido2db_get_cached_object_id() start
Tue Apr  3 13:20:31 2012 .835492 [001.2] [pid=16671] [tid=47373143706560] ido2db_object_hashfunc() start
Tue Apr  3 13:20:31 2012 .835499 [001.2] [pid=16671] [tid=47373143706560] ido2db_object_hashfunc() end
Tue Apr  3 13:20:31 2012 .835507 [001.2] [pid=16671] [tid=47373143706560] ido2db_get_cached_object_id(0) end
Tue Apr  3 13:20:31 2012 .835516 [001.2] [pid=16671] [tid=47373143706560] ido2db_db_escape_string('24x7') start
Tue Apr  3 13:20:31 2012 .835525 [001.2] [pid=16671] [tid=47373143706560] ido2db_db_escape_string end
Tue Apr  3 13:20:31 2012 .835538 [001.2] [pid=16671] [tid=47373143706560] ido2db_oci_prepared_statement_bind_null_param() param=:X4
Tue Apr  3 13:20:31 2012 .838023 [001.2] [pid=16671] [tid=47373143706560] ido2db_query_objects_select_name1_name2(24x7,(null)) object id=5 selected
Tue Apr  3 13:20:31 2012 .838045 [001.2] [pid=16671] [tid=47373143706560] ido2db_get_object_id(5) end
Tue Apr  3 13:20:31 2012 .838059 [001.2] [pid=16671] [tid=47373143706560] ido2db_handle_hoststatusdata() LongLen:1184
Tue Apr  3 13:20:31 2012 .838068 [001.2] [pid=16671] [tid=47373143706560] ido2db_query_insert_or_update_hoststatusdata_add() start
Tue Apr  3 13:20:31 2012 .838149 [001.2] [pid=16671] [tid=47373143706560] ido2db_query_insert_or_update_hoststatus() bind clob
Tue Apr  3 13:20:31 2012 .842455 [002.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X5i,1184 Bytes requested
Tue Apr  3 13:20:31 2012 .842474 [002.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X5i,Next chunk 1024 bytes from pos 0 (total 1184) 
Tue Apr  3 13:20:31 2012 .844131 [002.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X5i,1024 Bytes=1024 Chars (total 1024/1184)   appended
Tue Apr  3 13:20:31 2012 .844149 [002.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X5i,Next chunk 160 bytes from pos 1024 (total 1184) 
Tue Apr  3 13:20:31 2012 .845985 [002.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X5i,160 Bytes=160 Chars (total 1184/1184)   appended
Tue Apr  3 13:20:31 2012 .846579 [001.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X5i,Lob successfully written:1184 bytes=1184 chars 
Tue Apr  3 13:20:31 2012 .847459 [002.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X5u,1184 Bytes requested
Tue Apr  3 13:20:31 2012 .847475 [002.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X5u,Next chunk 1024 bytes from pos 0 (total 1184) 
Tue Apr  3 13:20:31 2012 .848549 [002.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X5u,1024 Bytes=1024 Chars (total 1024/1184)   appended
Tue Apr  3 13:20:31 2012 .848566 [002.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X5u,Next chunk 160 bytes from pos 1024 (total 1184) 
Tue Apr  3 13:20:31 2012 .849951 [002.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X5u,160 Bytes=160 Chars (total 1184/1184)   appended
Tue Apr  3 13:20:31 2012 .850599 [001.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X5u,Lob successfully written:1184 bytes=1184 chars 
Tue Apr  3 13:20:31 2012 .851585 [002.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X6i,211 Bytes requested
Tue Apr  3 13:20:31 2012 .851602 [002.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X6i,Next chunk 211 bytes from pos 0 (total 211) 
Tue Apr  3 13:20:31 2012 .852984 [002.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X6i,211 Bytes=211 Chars (total 211/211)   appended
Tue Apr  3 13:20:31 2012 .853621 [001.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X6i,Lob write warning:len 211, but lob size 211 bytes=1395 chars (last chunk 'check_multi::check_multi::plugins=2 time=8.027867 IPv4::check_ping::rta=0.037000ms;3000.000000;5000.000000;0.000000 pl=0%;80;100;0 IPv6::check_ping::rta=0.037000ms;3000.000000;5000.000000;0.000000 pl=0%;80;100;0')
Tue Apr  3 13:20:31 2012 .854215 [002.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X6u,211 Bytes requested
Tue Apr  3 13:20:31 2012 .854236 [002.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X6u,Next chunk 211 bytes from pos 0 (total 211) 
Tue Apr  3 13:20:31 2012 .855372 [002.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X6u,211 Bytes=211 Chars (total 211/211)   appended
Tue Apr  3 13:20:31 2012 .856466 [001.2] [pid=16671] [tid=47373143706560] ido2db_oci_bind_clob:Bind :X6u,Lob write warning:len 211, but lob size 211 bytes=1395 chars (last chunk 'check_multi::check_multi::plugins=2 time=8.027867 IPv4::check_ping::rta=0.037000ms;3000.000000;5000.000000;0.000000 pl=0%;80;100;0 IPv6::check_ping::rta=0.037000ms;3000.000000;5000.000000;0.000000 pl=0%;80;100;0')
Tue Apr  3 13:20:31 2012 .861190 [001.2] [pid=16671] [tid=47373143706560] ido2db_query_insert_or_update_hoststatus()  executed
Tue Apr  3 13:20:31 2012 .865451 [001.2] [pid=16671] [tid=47373143706560] ido2db_query_insert_or_update_hoststatusdata_add() end

@icinga-migration
Copy link
Author

Updated by Tommi on 2012-04-03 19:07:08 +00:00

  • Status changed from Assigned to Feedback
  • Done % changed from 90 to 100

fine. chunksize i set now to 2048

:X6u,Next chunk 211 bytes from pos 0 (total 211) 
:X6u,211 Bytes=211 Chars (total 211/211)   appended
:X6u,Lob write warning:len 211, but lob size 211 bytes=1395 chars

This is a c&p error(wrong variable assigned) and is fixed now in the same changeset

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2012-04-19 13:02:19 +00:00

  • Status changed from Feedback to Resolved

seen that, runs fine over here as well. thanks for the fix.

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2013-01-02 19:20:23 +00:00

  • Status changed from Resolved to Assigned
  • Assigned to changed from Tommi to mfriedrich
  • Target Version changed from 1.7 to 1.9
  • Done % changed from 100 to 50
  • Icinga Version set to 1
  • (unknown custom field) set to 1
  • OS Version set to Debian Testing/Wheezy 7.0
  • (unknown custom field) set to MySQL
  • (unknown custom field) set to 5

the original issue is not fixed, as it's not the long output on mysql causing data irritation, but inner idoutils buffer size limits.

below is an ido2db debug log which shows an irritation between the forced service check and the status update triggered, which directly leads into buffer problems from within idomod, as data is being worked on in a sequential manner, it cannot be mixed by ido2db, only working on the received data itsself. it finally receives only garbage after the long_output has been dumped, which may be a reason for the gargabe actually dumped into the database.

Wed Jan  2 19:48:57 2013 .692024 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .692034 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=511
Wed Jan  2 19:48:57 2013 .692043 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .692051 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .692061 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .692069 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .692077 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .692087 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() start
Wed Jan  2 19:48:57 2013 .692095 [001.2] [pid=26850] [tid=140737353983744] ido2db_free_input_memory() start
Wed Jan  2 19:48:57 2013 .692103 [001.2] [pid=26850] [tid=140737353983744] ido2db_free_input_memory() end
Wed Jan  2 19:48:57 2013 .692113 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .692122 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .692130 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .692138 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .692147 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .692156 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() line: 258711, type: 1, VAL: 1202
Wed Jan  2 19:48:57 2013 .692165 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item() start
Wed Jan  2 19:48:57 2013 .692173 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item(1202)
Wed Jan  2 19:48:57 2013 .692182 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .692190 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .692209 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .692218 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .692226 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .692234 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() line: 258712, type: 2, VAL: 0
Wed Jan  2 19:48:57 2013 .692243 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item() start
Wed Jan  2 19:48:57 2013 .692251 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item(0)
Wed Jan  2 19:48:57 2013 .692260 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .692267 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .692276 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .692284 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .692292 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .692300 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() line: 258713, type: 3, VAL: 0
Wed Jan  2 19:48:57 2013 .692309 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item() start
Wed Jan  2 19:48:57 2013 .692317 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item(0)
Wed Jan  2 19:48:57 2013 .692325 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .692333 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .692341 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .692349 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .692358 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .692366 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() line: 258714, type: 4, VAL: 1357152537.689526
Wed Jan  2 19:48:57 2013 .692374 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item() start
Wed Jan  2 19:48:57 2013 .692382 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item(1357152537.689526)
Wed Jan  2 19:48:57 2013 .692391 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .692399 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .692407 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .692415 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .692423 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .692432 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() line: 258715, type: 53, VAL: 131113localhost
Wed Jan  2 19:48:57 2013 .692440 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item() start
Wed Jan  2 19:48:57 2013 .692449 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item(131113localhost)
Wed Jan  2 19:48:57 2013 .692457 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .692465 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .692473 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .692482 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .692490 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .692506 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() line: 258716, type: 114, VAL: 131113service
Wed Jan  2 19:48:57 2013 .692516 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item() start
Wed Jan  2 19:48:57 2013 .692524 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item(131113service)
Wed Jan  2 19:48:57 2013 .692533 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .692541 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .692549 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .692557 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .692566 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .692574 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() line: 258717, type: 95, VAL: (No output returned from plugin)
Wed Jan  2 19:48:57 2013 .692582 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item() start
Wed Jan  2 19:48:57 2013 .692592 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item((No output returned from plugin))
Wed Jan  2 19:48:57 2013 .692600 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .692608 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .692618 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .692628 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=908
Wed Jan  2 19:48:57 2013 .692638 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .692648 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=1419
Wed Jan  2 19:48:57 2013 .692659 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .692668 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=1930
Wed Jan  2 19:48:57 2013 .692680 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .692689 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=2441
Wed Jan  2 19:48:57 2013 .692702 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .692712 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=2952
Wed Jan  2 19:48:57 2013 .692725 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .692735 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=3463
Wed Jan  2 19:48:57 2013 .692749 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .692759 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=3974
Wed Jan  2 19:48:57 2013 .692776 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .692786 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=4485
Wed Jan  2 19:48:57 2013 .692802 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .692812 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=4996
Wed Jan  2 19:48:57 2013 .692829 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .692839 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=5507
Wed Jan  2 19:48:57 2013 .692857 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .692867 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=6018
Wed Jan  2 19:48:57 2013 .692886 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .692896 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=6529
Wed Jan  2 19:48:57 2013 .692921 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .692932 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=7040
Wed Jan  2 19:48:57 2013 .692953 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .692963 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=7551
Wed Jan  2 19:48:57 2013 .692985 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .692996 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=8062
Wed Jan  2 19:48:57 2013 .693018 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693029 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=8573
Wed Jan  2 19:48:57 2013 .693052 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693063 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=9084
Wed Jan  2 19:48:57 2013 .693087 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693098 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=9595
Wed Jan  2 19:48:57 2013 .693123 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693134 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=10106
Wed Jan  2 19:48:57 2013 .693160 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693171 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=10617
Wed Jan  2 19:48:57 2013 .693198 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693209 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=11128
Wed Jan  2 19:48:57 2013 .693237 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693248 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=11639
Wed Jan  2 19:48:57 2013 .693276 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693288 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=12150
Wed Jan  2 19:48:57 2013 .693317 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693328 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=12661
Wed Jan  2 19:48:57 2013 .693358 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693370 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=13172
Wed Jan  2 19:48:57 2013 .693401 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693412 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=13683
Wed Jan  2 19:48:57 2013 .693444 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693456 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=14194
Wed Jan  2 19:48:57 2013 .693488 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693500 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=14705
Wed Jan  2 19:48:57 2013 .693534 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693545 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=15216
Wed Jan  2 19:48:57 2013 .693580 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693592 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=15727
Wed Jan  2 19:48:57 2013 .693628 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693641 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=16238
Wed Jan  2 19:48:57 2013 .693677 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693695 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=16749
Wed Jan  2 19:48:57 2013 .693732 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693745 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=17260
Wed Jan  2 19:48:57 2013 .693783 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693795 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=17771
Wed Jan  2 19:48:57 2013 .693834 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693847 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=18282
Wed Jan  2 19:48:57 2013 .693886 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693899 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=18793
Wed Jan  2 19:48:57 2013 .693939 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .693952 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=19304
Wed Jan  2 19:48:57 2013 .693994 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .694006 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=19815
Wed Jan  2 19:48:57 2013 .694049 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .694062 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=20326
Wed Jan  2 19:48:57 2013 .694105 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .694124 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=20837
Wed Jan  2 19:48:57 2013 .694186 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .694212 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=21348
Wed Jan  2 19:48:57 2013 .694259 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .694272 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=21859
Wed Jan  2 19:48:57 2013 .694318 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .694332 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=22370
Wed Jan  2 19:48:57 2013 .694378 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .694392 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=22881
Wed Jan  2 19:48:57 2013 .694440 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .694453 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=23392
Wed Jan  2 19:48:57 2013 .694502 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .694516 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=23903
Wed Jan  2 19:48:57 2013 .694565 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .694579 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=24414
Wed Jan  2 19:48:57 2013 .694629 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .694643 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=24925
Wed Jan  2 19:48:57 2013 .694701 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .694730 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=25436
Wed Jan  2 19:48:57 2013 .694820 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .694837 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=25947
Wed Jan  2 19:48:57 2013 .694891 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .694914 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=26458
Wed Jan  2 19:48:57 2013 .694980 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .694999 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=26969
Wed Jan  2 19:48:57 2013 .695054 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .695069 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=27480
Wed Jan  2 19:48:57 2013 .695125 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .695140 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=27991
Wed Jan  2 19:48:57 2013 .695197 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .695212 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=28502
Wed Jan  2 19:48:57 2013 .695269 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .695284 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=29013
Wed Jan  2 19:48:57 2013 .695343 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .695358 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=29524
Wed Jan  2 19:48:57 2013 .695417 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .695432 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=30035
Wed Jan  2 19:48:57 2013 .695492 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .695508 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=30546
Wed Jan  2 19:48:57 2013 .695568 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .695584 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=31057
Wed Jan  2 19:48:57 2013 .695645 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .695660 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=31568
Wed Jan  2 19:48:57 2013 .695724 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .695740 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=32079
Wed Jan  2 19:48:57 2013 .695803 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .695819 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=32590
Wed Jan  2 19:48:57 2013 .695883 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .695899 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=33101
Wed Jan  2 19:48:57 2013 .695964 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .695980 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=33612
Wed Jan  2 19:48:57 2013 .696045 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .696062 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=34123
Wed Jan  2 19:48:57 2013 .696128 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .696145 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=34634
Wed Jan  2 19:48:57 2013 .696212 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .696228 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=35145
Wed Jan  2 19:48:57 2013 .696297 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .696314 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=35656
Wed Jan  2 19:48:57 2013 .696383 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .696400 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=36167
Wed Jan  2 19:48:57 2013 .696476 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .696494 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=36678
Wed Jan  2 19:48:57 2013 .696564 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .696581 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=37189
Wed Jan  2 19:48:57 2013 .696653 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .696670 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=37700
Wed Jan  2 19:48:57 2013 .696742 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .696759 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=38211
Wed Jan  2 19:48:57 2013 .696833 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .696850 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=38722
Wed Jan  2 19:48:57 2013 .696924 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .696941 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=39233
Wed Jan  2 19:48:57 2013 .697016 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .697034 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=39744
Wed Jan  2 19:48:57 2013 .697109 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .697127 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=40255
Wed Jan  2 19:48:57 2013 .697204 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .697222 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=40766
Wed Jan  2 19:48:57 2013 .697299 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .697317 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=41277
Wed Jan  2 19:48:57 2013 .697396 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .697414 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=41788
Wed Jan  2 19:48:57 2013 .697494 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .697512 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=42299
Wed Jan  2 19:48:57 2013 .697592 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .697610 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=42810
Wed Jan  2 19:48:57 2013 .697691 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .697709 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=43321
Wed Jan  2 19:48:57 2013 .697791 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .697810 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=43832
Wed Jan  2 19:48:57 2013 .697893 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .697911 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=44343
Wed Jan  2 19:48:57 2013 .697994 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .698013 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=44854
Wed Jan  2 19:48:57 2013 .698098 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .698116 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=45365
Wed Jan  2 19:48:57 2013 .698202 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .698221 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=45876
Wed Jan  2 19:48:57 2013 .698313 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .698333 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=46387
Wed Jan  2 19:48:57 2013 .698420 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .698440 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=46898
Wed Jan  2 19:48:57 2013 .698528 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .698547 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=47409
Wed Jan  2 19:48:57 2013 .698637 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .698656 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=47920
Wed Jan  2 19:48:57 2013 .698755 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .698778 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=48431
Wed Jan  2 19:48:57 2013 .698869 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 511
Wed Jan  2 19:48:57 2013 .698889 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=48942
Wed Jan  2 19:48:57 2013 .698982 [001.2] [pid=26850] [tid=140737353983744] BYTESREAD: 238
Wed Jan  2 19:48:57 2013 .699002 [001.2] [pid=26850] [tid=140737353983744] ido2db_check_for_client_input() dbuf.size=49180
Wed Jan  2 19:48:57 2013 .699107 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .699116 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .699124 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .699187 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() line: 258718, type: 125, VAL: TABLE CHUNK CNT_DIFF CRC_DIFF CHUNK_INDEX LOWER_BOUNDARY UPPER_BOUNDARY
..........

Wed Jan  2 19:48:57 2013 .699338 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item() start
Wed Jan  2 19:48:57 2013 .699502 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item(TABLE CHUNK CNT_DIFF CRC_DIFF CHUNK_INDEX LOWER_BOUNDARY UPPER_BOUNDARY\n
..........

Wed Jan  2 19:48:57 2013 .699654 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .699663 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .699673 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .699681 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .699690 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .699698 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .699707 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .699715 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .699723 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .699731 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() line: 258721, type: 217, VAL: 
Wed Jan  2 19:48:57 2013 .699740 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item() start
Wed Jan  2 19:48:57 2013 .699748 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item()
Wed Jan  2 19:48:57 2013 .699757 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .699764 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .699773 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .699781 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .699789 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .699797 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() line: 258722, type: 1, VAL: 1401
Wed Jan  2 19:48:57 2013 .699805 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item() start
Wed Jan  2 19:48:57 2013 .699813 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item(1401)
Wed Jan  2 19:48:57 2013 .699822 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .699829 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .699838 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .699851 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .699860 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .699868 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() line: 258723, type: 2, VAL: 0
Wed Jan  2 19:48:57 2013 .699876 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item() start
Wed Jan  2 19:48:57 2013 .699884 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item(0)
Wed Jan  2 19:48:57 2013 .699892 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .699900 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .699908 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .699916 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .699924 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .699932 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() line: 258724, type: 3, VAL: 0
Wed Jan  2 19:48:57 2013 .699940 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item() start
Wed Jan  2 19:48:57 2013 .699948 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item(0)
Wed Jan  2 19:48:57 2013 .699956 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .699964 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .699972 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .699980 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .699988 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .699996 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() line: 258725, type: 4, VAL: 1357152537.690830
Wed Jan  2 19:48:57 2013 .700004 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item() start
Wed Jan  2 19:48:57 2013 .700012 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item(1357152537.690830)
Wed Jan  2 19:48:57 2013 .700021 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .700028 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .700037 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .700044 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .700052 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .700061 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() line: 258726, type: 16, VAL: 54
Wed Jan  2 19:48:57 2013 .700069 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item() start
Wed Jan  2 19:48:57 2013 .700077 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item(54)
Wed Jan  2 19:48:57 2013 .700085 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .700093 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .700101 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .700109 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .700117 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .700125 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() line: 258727, type: 34, VAL: 1357152537
Wed Jan  2 19:48:57 2013 .700138 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item() start
Wed Jan  2 19:48:57 2013 .700147 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item(1357152537)
Wed Jan  2 19:48:57 2013 .700155 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .700163 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .700172 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .700180 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .700188 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .700196 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() line: 258728, type: 15, VAL: SCHEDULE_FORCED_SVC_CHECK
Wed Jan  2 19:48:57 2013 .700204 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item() start
Wed Jan  2 19:48:57 2013 .700213 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item(SCHEDULE_FORCED_SVC_CHECK)
Wed Jan  2 19:48:57 2013 .700221 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .700229 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .700237 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .700245 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .700253 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .700262 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() line: 258729, type: 13, VAL: 131113localhost;131113service;1357152536
Wed Jan  2 19:48:57 2013 .700270 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item() start
Wed Jan  2 19:48:57 2013 .700278 [001.2] [pid=26850] [tid=140737353983744] ido2db_add_input_data_item(131113localhost;131113service;1357152536)
Wed Jan  2 19:48:57 2013 .700287 [001.2] [pid=26850] [tid=140737353983744] ido2db_start_input_data() end
Wed Jan  2 19:48:57 2013 .700294 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end
Wed Jan  2 19:48:57 2013 .700302 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input start
Wed Jan  2 19:48:57 2013 .700310 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input instance_name=icinga-dev
Wed Jan  2 19:48:57 2013 .700319 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() input_section
Wed Jan  2 19:48:57 2013 .700327 [001.2] [pid=26850] [tid=140737353983744] ido2db_end_input_data() start
Wed Jan  2 19:48:57 2013 .700335 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_servicestatusdata() start
Wed Jan  2 19:48:57 2013 .700344 [001.2] [pid=26850] [tid=140737353983744] ido2db_convert_standard_data_elements() start
Wed Jan  2 19:48:57 2013 .700354 [001.2] [pid=26850] [tid=140737353983744] ido2db_convert_standard_data_elements() end
Wed Jan  2 19:48:57 2013 .700363 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_servicestatusdata() active_checks_enabled=0, notifications_enabled=-134371584
Wed Jan  2 19:48:57 2013 .700372 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_escape_string('(No output returned from plugin)') start
Wed Jan  2 19:48:57 2013 .700383 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_escape_string changed string ('\(No output returned from plugin\)')
Wed Jan  2 19:48:57 2013 .700391 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_escape_string end
Wed Jan  2 19:48:57 2013 .700399 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_escape_string('TABLE CHUNK CNT_DIFF CRC_DIFF CHUNK_INDEX LOWER_BOUNDARY UPPER_BOUNDARY\n
..........
Wed Jan  2 19:48:57 2013 .701190 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_escape_string changed string ('TABLE CHUNK CNT_DIFF CRC_DIFF CHUNK_INDEX LOWER_BOUNDARY UPPER_BOUNDARY\\n
..........
Wed Jan  2 19:48:57 2013 .701340 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_escape_string end
Wed Jan  2 19:48:57 2013 .701349 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql(1357152537) start
Wed Jan  2 19:48:57 2013 .701360 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql(FROM_UNIXTIME(1357152537)) end
Wed Jan  2 19:48:57 2013 .701376 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql(0) start
Wed Jan  2 19:48:57 2013 .701385 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql('0000-00-00 00:00:00') end
Wed Jan  2 19:48:57 2013 .701394 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql(0) start
Wed Jan  2 19:48:57 2013 .701403 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql('0000-00-00 00:00:00') end
Wed Jan  2 19:48:57 2013 .701411 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql(0) start
Wed Jan  2 19:48:57 2013 .701420 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql('0000-00-00 00:00:00') end
Wed Jan  2 19:48:57 2013 .701428 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql(0) start
Wed Jan  2 19:48:57 2013 .701436 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql('0000-00-00 00:00:00') end
Wed Jan  2 19:48:57 2013 .701445 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql(0) start
Wed Jan  2 19:48:57 2013 .701453 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql('0000-00-00 00:00:00') end
Wed Jan  2 19:48:57 2013 .701461 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql(0) start
Wed Jan  2 19:48:57 2013 .701470 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql('0000-00-00 00:00:00') end
Wed Jan  2 19:48:57 2013 .701478 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql(0) start
Wed Jan  2 19:48:57 2013 .701487 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql('0000-00-00 00:00:00') end
Wed Jan  2 19:48:57 2013 .701495 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql(0) start
Wed Jan  2 19:48:57 2013 .701504 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql('0000-00-00 00:00:00') end
Wed Jan  2 19:48:57 2013 .701512 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql(0) start
Wed Jan  2 19:48:57 2013 .701520 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql('0000-00-00 00:00:00') end
Wed Jan  2 19:48:57 2013 .701529 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql(0) start
Wed Jan  2 19:48:57 2013 .701537 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_timet_to_sql('0000-00-00 00:00:00') end
Wed Jan  2 19:48:57 2013 .701546 [001.2] [pid=26850] [tid=140737353983744] ido2db_get_object_id_with_insert() start
Wed Jan  2 19:48:57 2013 .701554 [001.2] [pid=26850] [tid=140737353983744] ido2db_get_object_id() start
Wed Jan  2 19:48:57 2013 .701562 [001.2] [pid=26850] [tid=140737353983744] ido2db_get_cached_object_id() start
Wed Jan  2 19:48:57 2013 .701572 [001.2] [pid=26850] [tid=140737353983744] ido2db_object_hashfunc() start
Wed Jan  2 19:48:57 2013 .701580 [001.2] [pid=26850] [tid=140737353983744] ido2db_object_hashfunc() end
Wed Jan  2 19:48:57 2013 .701589 [001.2] [pid=26850] [tid=140737353983744] ido2db_compare_object_hashdata() start
Wed Jan  2 19:48:57 2013 .701597 [001.2] [pid=26850] [tid=140737353983744] ido2db_compare_object_hashdata() start
Wed Jan  2 19:48:57 2013 .701605 [001.2] [pid=26850] [tid=140737353983744] ido2db_get_cached_object_id(4452) end
Wed Jan  2 19:48:57 2013 .701613 [001.2] [pid=26850] [tid=140737353983744] ido2db_get_object_id(4452) return cached object
Wed Jan  2 19:48:57 2013 .701621 [001.2] [pid=26850] [tid=140737353983744] ido2db_get_object_id_with_insert() start
Wed Jan  2 19:48:57 2013 .701630 [001.2] [pid=26850] [tid=140737353983744] ido2db_query_insert_or_update_servicestatusdata_add() start
Wed Jan  2 19:48:57 2013 .701676 [001.2] [pid=26850] [tid=140737353983744] ido2db_query_insert_or_update_servicestatusdata_add() Warning:long_output truncated
Wed Jan  2 19:48:57 2013 .701785 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_query() start
Wed Jan  2 19:48:57 2013 .701886 [002.0] [pid=26850] [tid=140737353983744] UPDATE icinga_servicestatus SET instance_id=1, service_object_id=4452, status_update_time=FROM_UNIXTIME(1357152537), output='\(No output returned from plugin\)', long_output='TABLE CHUNK CNT_DIFF CRC_DIFF CHUNK_INDEX LOWER_BOUNDARY UPPER_BOUNDARY\\n
..........
', perfdata='', current_state=0, has_been_checked=0, should_be_scheduled=0, current_check_attempt=0, max_check_attempts=0, last_check='0000-00-00 00:00:00', next_check='0000-00-00 00:00:00', check_type=0, last_state_change='0000-00-00 00:00:00', last_hard_state_change='0000-00-00 00:00:00', last_hard_state=0, last_time_ok='0000-00-00 00:00:00', last_time_warning='0000-00-00 00:00:00', last_time_unknown='0000-00-00 00:00:00', last_time_critical='0000-00-00 00:00:00', state_type=0, last_notification='0000-00-00 00:00:00', next_notification='0000-00-00 00:00:00', no_more_notifications=0, notifications_enabled=0, problem_has_been_acknowledged=0, acknowledgement_type=0, current_notification_number=0, passive_checks_enabled=0, active_checks_enabled=0, event_handler_enabled=13105, flap_detection_enabled=0, is_flapping=0, percent_state_change='0.000000', latency='0.000000', execution_time='0.000000', scheduled_downtime_depth=0, failure_prediction_enabled=0, process_performance_data=4441167, obsess_over_service=0, modified_service_attributes=0, event_handler='(null)', check_command='(null)', normal_check_interval='0.000000', retry_check_interval='0.000000', check_timeperiod_object_id=0 WHERE service_object_id=4452
Wed Jan  2 19:48:57 2013 .703097 [001.2] [pid=26850] [tid=140737353983744] ido2db_db_query(0) end
Wed Jan  2 19:48:57 2013 .703137 [001.2] [pid=26850] [tid=140737353983744] ido2db_query_insert_or_update_servicestatusdata_add() dbi_result_get_numrows_affected=1
Wed Jan  2 19:48:57 2013 .703152 [001.2] [pid=26850] [tid=140737353983744] ido2db_query_insert_or_update_servicestatusdata_add() end
Wed Jan  2 19:48:57 2013 .703163 [001.2] [pid=26850] [tid=140737353983744] ido2db_save_custom_variables() start
Wed Jan  2 19:48:57 2013 .703172 [001.2] [pid=26850] [tid=140737353983744] ido2db_save_custom_variables() end
Wed Jan  2 19:48:57 2013 .703181 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_servicestatusdata() end
Wed Jan  2 19:48:57 2013 .703190 [001.2] [pid=26850] [tid=140737353983744] ido2db_free_input_memory() start
Wed Jan  2 19:48:57 2013 .703202 [001.2] [pid=26850] [tid=140737353983744] ido2db_free_input_memory() end
Wed Jan  2 19:48:57 2013 .703210 [001.2] [pid=26850] [tid=140737353983744] ido2db_end_input_data() end
Wed Jan  2 19:48:57 2013 .703218 [001.2] [pid=26850] [tid=140737353983744] ido2db_handle_client_input() end

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2013-01-02 19:53:28 +00:00

basically, idomod does not care about any string limits of its own, and creates funky strings, just truncating them in the end for the socket. a while back, i've increased that buffer size from 16k to 50k from an Opsview patch, but ever since we easily hit 50k with the given plugin long output, this just causes data irritation rather than a safety lock on the socket buffer. meaning to say - limiting the socket buffer is just plain stupid, it only makes sense if you do not give a fuck about the data/protocol being sent over.

#define IDOMOD_MAX_BUFLEN   49152

[1357143302.199707] [001.2] [pid=23108] idomod_write_to_sink(
223:
1=1801
2=0
3=0
4=1357143302.199201
120=1
53=131113localhost
114=131113service
119=1
118=2
121=1
25=1
76=3
265=0
56=2
95=(No output returned from plugin)
125=TABLE CHUNK CNT_DIFF CRC_DIFF CHUNK_INDEX LOWER_BOUNDARY UPPER_BOUNDARY\\n
.........
 138583 0 1 PR)
[1357143302.199820] [001.2] [pid=23108] idomod_sink_buffer_items()
[1357143302.199837] [001.2] [pid=23108] idomod_write_to_sink() end
[1357143302.199843] [001.2] [pid=23108] idomod_broker_data() end
[1357143302.199932] [001.2] [pid=23108] idomod_broker_data() start
[1357143302.199948] [001.2] [pid=23108] idomod_broker_data() start

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2013-01-02 20:50:13 +00:00

  • Status changed from Assigned to 7
  • Done % changed from 50 to 100

requires some more testing, but fixed in next and master.

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2013-01-16 19:55:43 +00:00

  • Status changed from 7 to Resolved

fixed in 1.8.4 already.

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2014-12-08 14:37:34 +00:00

  • Project changed from 18 to Core, Classic UI, IDOUtils
  • Category changed from 79 to IDOUtils
  • Icinga Version changed from 1 to 1
  • OS Version set to any

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

1 participant