Formats the results of an HTTP data point storage request @param results A map of results. The map will consist of: success - (long) the number of successfully parsed datapoints failed - (long) the number of datapoint parsing failures errors - (ArrayList<HashMap<Strin
(final Map<String, Object> results)
| 390 | * @throws BadRequestException if the plugin has not implemented this method |
| 391 | */ |
| 392 | public ChannelBuffer formatPutV1(final Map<String, Object> results) { |
| 393 | throw new BadRequestException(HttpResponseStatus.NOT_IMPLEMENTED, |
| 394 | "The requested API endpoint has not been implemented", |
| 395 | this.getClass().getCanonicalName() + |
| 396 | " has not implemented formatPutV1"); |
| 397 | } |
| 398 | |
| 399 | /** |
| 400 | * Formats a suggestion response |