Logstash ignoring parts of RabbitMQ message

Hello, I'm new to elastic and logstash and I'm, not sure what's happening here.

I have multiple JSON documents in one Rabbit MQ message.

Logstash pops the queue sees the first document and ignores anything following.

Is there a way to get Logstash to see all documents?

Here is an example of one Rabbit message, the first JSON document is inserted into the database, the second one is ignored, any help greatly appreciated:

{
"RMTD" : {
"plugin_timestamp" : "1461679110",
"plugin_output" : "",
"plugin_service_description" : "Tables",
"plugin_site_id" : "MKV",
"plugin_target" : "calypsoid",
"plugin_command" : "PROCESSRESULT",
"plugin_status_code" : 0
},
"mtc" : {
"metric_max" : 0,
"metric_critical" : 90,
"metric_label" : "USERS",
"metric_value" : 2,
"metric_uom" : "%",
"metric_warning" : 80,
"metric_min" : 0
}
}

{
"RMTD" : {
"plugin_timestamp" : "1461679110",
"plugin_output" : "",
"plugin_service_description" : "Tables",
"plugin_site_id" : "MKV",
"plugin_target" : "calypsoid",
"plugin_command" : "PROCESSRESULT",
"plugin_status_code" : 0
},
"mtc" : {
"metric_max" : 0,
"metric_critical" : 90,
"metric_label" : "DATA",
"metric_value" : 8,
"metric_uom" : "%",
"metric_warning" : 75,
"metric_min" : 0
}
}