aboutsummaryrefslogtreecommitdiffstats
path: root/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/provisioning/StatisticsServlet.java
blob: 9f113efd3d9f30ab937579118e6bc7b9b5a97e51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
/*******************************************************************************
 * ============LICENSE_START==================================================
 * * org.onap.dmaap
 * * ===========================================================================
 * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
 * * ===========================================================================
 * * Licensed under the Apache License, Version 2.0 (the "License");
 * * you may not use this file except in compliance with the License.
 * * You may obtain a copy of the License at
 * *
 *  *      http://www.apache.org/licenses/LICENSE-2.0
 * *
 *  * Unless required by applicable law or agreed to in writing, software
 * * distributed under the License is distributed on an "AS IS" BASIS,
 * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * * See the License for the specific language governing permissions and
 * * limitations under the License.
 * * ============LICENSE_END====================================================
 * *
 * * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 * *
 ******************************************************************************/

package org.onap.dmaap.datarouter.provisioning;

import static org.onap.dmaap.datarouter.provisioning.utils.HttpServletUtils.sendResponseError;

import java.io.IOException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import java.util.TimeZone;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.json.JSONException;
import org.onap.dmaap.datarouter.provisioning.beans.EventLogRecord;
import org.onap.dmaap.datarouter.provisioning.utils.DB;
import org.onap.dmaap.datarouter.provisioning.utils.LOGJSONObject;


/**
 * This Servlet handles requests to the <Statistics API> and  <Statistics consilidated
 * resultset>.
 *
 * @author Manish Singh
 * @version $Id: StatisticsServlet.java,v 1.11 2016/08/10 17:27:02 Manish Exp $
 */
@SuppressWarnings("serial")


public class StatisticsServlet extends BaseServlet {

    private static final long TWENTYFOUR_HOURS = (24 * 60 * 60 * 1000L);
    private static final String FMT1 = "yyyy-MM-dd'T'HH:mm:ss'Z'";
    private static final String FMT2 = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'";
    public static final String FEEDID = "FEEDID";

    //sql Strings
    private static final String SQL_SELECT_NAME = "SELECT (SELECT NAME FROM FEEDS AS f WHERE f.FEEDID in(";
    private static final String SQL_FEED_ID = ") and f.FEEDID=e.FEEDID) AS FEEDNAME, e.FEEDID as FEEDID, ";
    private static final String SQL_SELECT_COUNT = "(SELECT COUNT(*) FROM LOG_RECORDS AS c WHERE c.FEEDID in(";
    private static final String SQL_TYPE_PUB = ") and c.FEEDID=e.FEEDID AND c.TYPE='PUB') AS FILES_PUBLISHED,";
    private static final String SQL_SELECT_SUM = "(SELECT SUM(content_length) FROM LOG_RECORDS AS c WHERE c.FEEDID in(";
    private static final String SQL_PUBLISH_LENGTH = ") and c.FEEDID=e.FEEDID AND c.TYPE='PUB') AS PUBLISH_LENGTH, COUNT(e.EVENT_TIME) as FILES_DELIVERED,";
    private static final String SQL_SUBSCRIBER_URL = " sum(m.content_length) as DELIVERED_LENGTH,SUBSTRING_INDEX(e.REQURI,'/',+3) as SUBSCRIBER_URL,";
    private static final String SQL_SUB_ID = " e.DELIVERY_SUBID as SUBID, ";
    private static final String SQL_DELIVERY_TIME = " e.EVENT_TIME AS PUBLISH_TIME, m.EVENT_TIME AS DELIVERY_TIME, ";
    private static final String SQL_AVERAGE_DELAY = " AVG(e.EVENT_TIME - m.EVENT_TIME)/1000 as AverageDelay FROM LOG_RECORDS";
    private static final String SQL_JOIN_RECORDS = " e JOIN LOG_RECORDS m ON m.PUBLISH_ID = e.PUBLISH_ID AND e.FEEDID IN (";
    private static final String SQL_STATUS_204 = " AND m.STATUS=204 AND e.RESULT=204 ";
    private static final String SQL_GROUP_SUB_ID = " group by SUBID";


    /**
     * DELETE a logging URL -- not supported.
     */
    @Override
    public void doDelete(HttpServletRequest req, HttpServletResponse resp) {
        String message = "DELETE not allowed for the logURL.";
        EventLogRecord elr = new EventLogRecord(req);
        elr.setMessage(message);
        elr.setResult(HttpServletResponse.SC_METHOD_NOT_ALLOWED);
        eventlogger.error(elr.toString());
        sendResponseError(resp, HttpServletResponse.SC_METHOD_NOT_ALLOWED, message, eventlogger);
    }

    /**
     * GET a Statistics URL -- retrieve Statistics data for a feed or subscription. See the
     * <b>Statistics API</b> document for details on how this     method should be invoked.
     */
    @Override
    public void doGet(HttpServletRequest req, HttpServletResponse resp) {
        Map<String, String> map = buildMapFromRequest(req);
        if (map.get("err") != null) {
            sendResponseError(resp, HttpServletResponse.SC_BAD_REQUEST,
                    "Invalid arguments: " + map.get("err"), eventlogger);
            return;
        }
        // check Accept: header??
        resp.setStatus(HttpServletResponse.SC_OK);
        resp.setContentType(LOGLIST_CONTENT_TYPE);
        String outputType = "json";
        if (req.getParameter(FEEDID) == null && req.getParameter(GROUPID) == null) {
            try {
                resp.getOutputStream().print("Invalid request, Feedid or Group ID is required.");
            } catch (IOException ioe) {
                eventlogger.error("PROV0171 StatisticsServlet.doGet: " + ioe.getMessage(), ioe);
            }
        }
        if (req.getParameter(FEEDID) != null && req.getParameter(GROUPID) == null) {
            map.put(FEEDIDS, req.getParameter(FEEDID).replace("|", ","));
        }
        if (req.getParameter(GROUPID) != null && req.getParameter(FEEDID) == null) {
            StringBuilder groupid1;
            try {
                groupid1 = this.getFeedIdsByGroupId(Integer.parseInt(req.getParameter(GROUPID)));
                map.put(FEEDIDS, groupid1.toString());
            } catch (NumberFormatException | SQLException e) {
                eventlogger.error("PROV0172 StatisticsServlet.doGet: " + e.getMessage(), e);
            }
        }
        if (req.getParameter(GROUPID) != null && req.getParameter(FEEDID) != null) {
            StringBuilder groupid1;
            try {
                groupid1 = this.getFeedIdsByGroupId(Integer.parseInt(req.getParameter(GROUPID)));
                groupid1.append(",");
                groupid1.append(req.getParameter(FEEDID).replace("|", ","));
                map.put(FEEDIDS, groupid1.toString());
            } catch (NumberFormatException | SQLException e) {
                eventlogger.error("PROV0173 StatisticsServlet.doGet: " + e.getMessage(), e);
            }
        }
        if (req.getParameter(SUBID) != null && req.getParameter(FEEDID) != null) {
            String subidstr = "and e.DELIVERY_SUBID in("
                + req.getParameter(SUBID).replace("|", ",") + ")";
            map.put(SUBID, subidstr);
        }
        if (req.getParameter(SUBID) != null && req.getParameter(GROUPID) != null) {
            String subidstr = "and e.DELIVERY_SUBID in("
                + req.getParameter(SUBID).replace("|", ",") + ")";
            map.put(SUBID, subidstr);
        }
        if (req.getParameter("type") != null) {
            map.put(EVENT_TYPE, req.getParameter("type").replace("|", ","));
        }
        if (req.getParameter(OUTPUT_TYPE) != null) {
            map.put(OUTPUT_TYPE, req.getParameter(OUTPUT_TYPE));
        }
        if (req.getParameter(START_TIME) != null) {
            map.put(START_TIME, req.getParameter(START_TIME));
        }
        if (req.getParameter(END_TIME) != null) {
            map.put(END_TIME, req.getParameter(END_TIME));
        }
        if (req.getParameter("time") != null) {
            map.put(START_TIME, req.getParameter("time"));
            map.put(END_TIME, null);
        }
        if (req.getParameter(OUTPUT_TYPE) != null) {
            outputType = req.getParameter(OUTPUT_TYPE);
        }
        try {
            this.getRecordsForSQL(map, outputType, resp.getOutputStream(), resp);
        } catch (IOException ioe) {
            eventlogger.error("PROV0174 StatisticsServlet.doGet: " +  ioe.getMessage(), ioe);
        }

    }


    /**
     * rsToJson - Converting RS to JSON object.
     *
     * @param out ServletOutputStream
     * @param rs as ResultSet
     * @throws IOException input/output exception
     * @throws SQLException SQL exception
     */
    public void rsToCSV(ResultSet rs, ServletOutputStream out) throws IOException, SQLException {
        String header = "FEEDNAME,FEEDID,FILES_PUBLISHED,PUBLISH_LENGTH, FILES_DELIVERED, "
            + "DELIVERED_LENGTH, SUBSCRIBER_URL, SUBID, PUBLISH_TIME,DELIVERY_TIME, AverageDelay\n";
        out.write(header.getBytes());

        while (rs.next()) {
            String line = rs.getString("FEEDNAME")
                + ","
                + rs.getString(FEEDID)
                + ","
                + rs.getString("FILES_PUBLISHED")
                + ","
                + rs.getString("PUBLISH_LENGTH")
                + ","
                + rs.getString("FILES_DELIVERED")
                + ","
                + rs.getString("DELIVERED_LENGTH")
                + ","
                + rs.getString("SUBSCRIBER_URL")
                + ","
                + rs.getString("SUBID")
                + ","
                + rs.getString("PUBLISH_TIME")
                + ","
                + rs.getString("DELIVERY_TIME")
                + ","
                + rs.getString("AverageDelay")
                + ","
                + "\n";
            out.write(line.getBytes());
            out.flush();
        }
    }

    /**
     * rsToJson - Converting RS to JSON object.
     *
     * @param out ServletOutputStream
     * @param rs as ResultSet
     * @throws IOException input/output exception
     * @throws SQLException SQL exception
     */
    private void rsToJson(ResultSet rs, ServletOutputStream out) throws IOException, SQLException {
        String[] fields = {"FEEDNAME", FEEDID, "FILES_PUBLISHED", "PUBLISH_LENGTH", "FILES_DELIVERED",
            "DELIVERED_LENGTH", "SUBSCRIBER_URL", "SUBID", "PUBLISH_TIME", "DELIVERY_TIME",
            "AverageDelay"};
        StringBuilder line = new StringBuilder();
        line.append("[\n");
        while (rs.next()) {
            LOGJSONObject j2 = new LOGJSONObject();
            for (String key : fields) {
                Object val = rs.getString(key);
                if (val != null) {
                    j2.put(key.toLowerCase(), val);
                } else {
                    j2.put(key.toLowerCase(), "");
                }
            }
            line.append(j2.toString());
            line.append(",\n");
        }
        line.append("]");
        out.print(line.toString());
    }

    /**
     * getFeedIdsByGroupId - Getting FEEDID's by GROUP ID.
     *
     * @throws SQLException Query SQLException.
     */
    private StringBuilder getFeedIdsByGroupId(int groupIds) throws SQLException {
        DB db = null;
        Connection conn = null;
        ResultSet resultSet = null;
        String sqlGoupid = null;
        StringBuilder feedIds = new StringBuilder();
        try {
            db = new DB();
            conn = db.getConnection();
            sqlGoupid = " SELECT FEEDID from FEEDS  WHERE GROUPID = ?";
            try (PreparedStatement prepareStatement = conn.prepareStatement(sqlGoupid)) {
                prepareStatement.setInt(1, groupIds);
                resultSet = prepareStatement.executeQuery();
                while (resultSet.next()) {
                    feedIds.append(resultSet.getInt(FEEDID));
                    feedIds.append(",");
                }
                feedIds.deleteCharAt(feedIds.length() - 1);
                eventlogger.info("PROV0177 StatisticsServlet.getFeedIdsByGroupId: feedIds = " + feedIds.toString());
            }
        } catch (SQLException e) {
            eventlogger.error("PROV0175 StatisticsServlet.getFeedIdsByGroupId: " + e.getMessage(), e);
        } finally {
            try {
                if (resultSet != null) {
                    resultSet.close();
                }
                if (conn != null) {
                    db.release(conn);
                }
            } catch (Exception e) {
                eventlogger.error("PROV0176 StatisticsServlet.getFeedIdsByGroupId: " + e.getMessage(), e);
            }
        }
        return feedIds;
    }


    /**
     * queryGeneretor - Generating sql query.
     *
     * @param map as key value pare of all user input fields
     */
    private String queryGeneretor(Map<String, String> map) throws ParseException {

        String sql;
        String feedids = null;
        String startTime = null;
        String endTime = null;
        String subid = " ";

        if (map.get(FEEDIDS) != null) {
            feedids = map.get(FEEDIDS);
        }
        if (map.get(START_TIME) != null) {
            startTime = map.get(START_TIME);
        }
        if (map.get(END_TIME) != null) {
            endTime =  map.get(END_TIME);
        }
        if (map.get(SUBID) != null) {
            subid = map.get(SUBID);
        }

        eventlogger.info("Generating sql query to get Statistics resultset. ");

        if (endTime == null && startTime == null) {

            sql =  SQL_SELECT_NAME + feedids + SQL_FEED_ID + SQL_SELECT_COUNT + feedids + SQL_TYPE_PUB
                    + SQL_SELECT_SUM
                    + feedids + SQL_PUBLISH_LENGTH
                + SQL_SUBSCRIBER_URL + SQL_SUB_ID + SQL_DELIVERY_TIME + SQL_AVERAGE_DELAY + SQL_JOIN_RECORDS
                    + feedids + ") " + subid
                    + SQL_STATUS_204 + SQL_GROUP_SUB_ID;

            return sql;
        } else if (startTime != null && endTime == null) {

            long inputTimeInMilli = 60000 * Long.parseLong(startTime);
            Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
            long currentTimeInMilli = cal.getTimeInMillis();
            long compareTime = currentTimeInMilli - inputTimeInMilli;

            sql = SQL_SELECT_NAME + feedids + SQL_FEED_ID + SQL_SELECT_COUNT + feedids + SQL_TYPE_PUB
                    + SQL_SELECT_SUM
                    + feedids + SQL_PUBLISH_LENGTH
                + SQL_SUBSCRIBER_URL + SQL_SUB_ID + SQL_DELIVERY_TIME + SQL_AVERAGE_DELAY + SQL_JOIN_RECORDS
                    + feedids + ") " + subid
                + SQL_STATUS_204 + " and e.event_time>=" + compareTime + SQL_GROUP_SUB_ID;
            return sql;

        } else {
            SimpleDateFormat inFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
            Date startDate = inFormat.parse(startTime);
            Date endDate = inFormat.parse(endTime);

            long startInMillis = startDate.getTime();
            long endInMillis = endDate.getTime();

            sql = SQL_SELECT_NAME + feedids + SQL_FEED_ID + SQL_SELECT_COUNT + feedids + SQL_TYPE_PUB
                    + SQL_SELECT_SUM
                    + feedids + SQL_PUBLISH_LENGTH + SQL_SUBSCRIBER_URL
                    + SQL_SUB_ID + SQL_DELIVERY_TIME + SQL_AVERAGE_DELAY + SQL_JOIN_RECORDS + feedids + ")" + subid + SQL_STATUS_204
                    +" and e.event_time between " + startInMillis + " and " + endInMillis + SQL_GROUP_SUB_ID;

            return sql;
        }
    }


    /**
     * PUT a Statistics URL -- not supported.
     */
    @Override
    public void doPut(HttpServletRequest req, HttpServletResponse resp) {
        String message = "PUT not allowed for the StatisticsURL.";
        EventLogRecord elr = new EventLogRecord(req);
        elr.setMessage(message);
        elr.setResult(HttpServletResponse.SC_METHOD_NOT_ALLOWED);
        eventlogger.error(elr.toString());
        sendResponseError(resp, HttpServletResponse.SC_METHOD_NOT_ALLOWED, message, eventlogger);
    }

    /**
     * POST a Statistics URL -- not supported.
     */
    @Override
    public void doPost(HttpServletRequest req, HttpServletResponse resp) {
        String message = "POST not allowed for the StatisticsURL.";
        EventLogRecord elr = new EventLogRecord(req);
        elr.setMessage(message);
        elr.setResult(HttpServletResponse.SC_METHOD_NOT_ALLOWED);
        eventlogger.error(elr.toString());
        sendResponseError(resp, HttpServletResponse.SC_METHOD_NOT_ALLOWED, message, eventlogger);
    }

    private Map<String, String> buildMapFromRequest(HttpServletRequest req) {
        Map<String, String> map = new HashMap<>();
        String str = req.getParameter("type");
        if (str != null) {
            if ("pub".equals(str) || "del".equals(str) || "exp".equals(str)) {
                map.put("type", str);
            } else {
                map.put("err", "bad type");
                return map;
            }
        } else {
            map.put("type", "all");
        }
        map.put("publishSQL", "");
        map.put("statusSQL", "");
        map.put("resultSQL", "");
        map.put(REASON_SQL, "");

        str = req.getParameter("publishId");
        if (str != null) {
            if (str.indexOf("'") >= 0) {
                map.put("err", "bad publishId");
                return map;
            }
            map.put("publishSQL", " AND PUBLISH_ID = '" + str + "'");
        }

        str = req.getParameter("statusCode");
        if (str != null) {
            String sql = null;
            switch (str) {
                case "success":
                    sql = " AND STATUS >= 200 AND STATUS < 300";
                    break;
                case "redirect":
                    sql = " AND STATUS >= 300 AND STATUS < 400";
                    break;
                case "failure":
                    sql = " AND STATUS >= 400";
                    break;
                default:
                    try {
                        int statusCode = Integer.parseInt(str);
                        if ((statusCode >= 100 && statusCode < 600) || (statusCode == -1)) {
                            sql = " AND STATUS = " + statusCode;
                        }
                    } catch (NumberFormatException e) {
                        eventlogger.error("Failed to parse input", e);
                    }
                    break;
            }
            if (sql == null) {
                map.put("err", "bad statusCode");
                return map;
            }
            map.put("statusSQL", sql);
            map.put("resultSQL", sql.replaceAll("STATUS", "RESULT"));
        }

        str = req.getParameter("expiryReason");
        if (str != null) {
            map.put("type", "exp");
            switch (str) {
                case "notRetryable":
                    map.put(REASON_SQL, " AND REASON = 'notRetryable'");
                    break;
                case "retriesExhausted":
                    map.put(REASON_SQL, " AND REASON = 'retriesExhausted'");
                    break;
                case "diskFull":
                    map.put(REASON_SQL, " AND REASON = 'diskFull'");
                    break;
                case "other":
                    map.put(REASON_SQL, " AND REASON = 'other'");
                    break;
                default:
                    map.put("err", "bad expiryReason");
                    return map;
            }
        }

        long stime = getTimeFromParam(req.getParameter("start"));
        if (stime < 0) {
            map.put("err", "bad start");
            return map;
        }
        long etime = getTimeFromParam(req.getParameter("end"));
        if (etime < 0) {
            map.put("err", "bad end");
            return map;
        }
        if (stime == 0 && etime == 0) {
            etime = System.currentTimeMillis();
            stime = etime - TWENTYFOUR_HOURS;
        } else if (stime == 0) {
            stime = etime - TWENTYFOUR_HOURS;
        } else if (etime == 0) {
            etime = stime + TWENTYFOUR_HOURS;
        }
        map.put("timeSQL", String.format(" AND EVENT_TIME >= %d AND EVENT_TIME <= %d", stime, etime));
        return map;
    }

    private long getTimeFromParam(final String str) {
        if (str == null) {
            return 0;
        }
        try {
            // First, look for an RFC 3339 date
            String fmt = (str.indexOf('.') > 0) ? FMT2 : FMT1;
            SimpleDateFormat sdf = new SimpleDateFormat(fmt);
            Date date = sdf.parse(str);
            return date.getTime();
        } catch (ParseException e) {
            intlogger.error("Exception in getting Time :- " + e.getMessage(), e);
        }
        try {
            // Also allow a long (in ms); useful for testing
            return Long.parseLong(str);
        } catch (NumberFormatException e) {
            intlogger.error("Exception in getting Time :- " + e.getMessage(), e);
        }
        intlogger.info("Error parsing time=" + str);
        return -1;
    }

    private void getRecordsForSQL(Map<String, String> map, String outputType, ServletOutputStream out,
            HttpServletResponse resp) {
        try {
            String filterQuery = this.queryGeneretor(map);
            eventlogger.debug("SQL Query for Statistics resultset. " + filterQuery);
            intlogger.debug(filterQuery);
            long start = System.currentTimeMillis();
            DB db = new DB();
            try (Connection conn = db.getConnection()) {
                try (ResultSet rs = conn.prepareStatement(filterQuery).executeQuery()) {
                    if ("csv".equals(outputType)) {
                        resp.setContentType("application/octet-stream");
                        Date date = new Date();
                        SimpleDateFormat dateFormat = new SimpleDateFormat("dd-MM-YYYY HH:mm:ss");
                        resp.setHeader("Content-Disposition",
                            "attachment; filename=\"result:" + dateFormat.format(date) + ".csv\"");
                        eventlogger.info("Generating CSV file from Statistics resultset");
                        rsToCSV(rs, out);
                    } else {
                        eventlogger.info("Generating JSON for Statistics resultset");
                        this.rsToJson(rs, out);
                    }
                }
                db.release(conn);
            } catch (SQLException e) {
                eventlogger.error("SQLException:" + e);
            }
            intlogger.debug("Time: " + (System.currentTimeMillis() - start) + " ms");
        } catch (IOException e) {
            eventlogger.error("IOException - Generating JSON/CSV:" + e);
        } catch (JSONException e) {
            eventlogger.error("JSONException - executing SQL query:" + e);
        } catch (ParseException e) {
            eventlogger.error("ParseException - executing SQL query:" + e);
        }
    }
}