public void send(EventObject event) throws JSONException {
   ByteBuffer rowKey = se.toByteBuffer(event.getString("partition_on"));
   event.put(timestamp_field, System.currentTimeMillis());
   mutator.addInsertion(
       rowKey, keyspace, createColumn(event.getEventName(), event.toString(), se, se));
   mutator.execute();
 }