private void reportParserError(String logLine, Throwable t) {
Map<String, Object> errorParams = Maps.newHashMap();
errorParams.put(RequestDispatcherTracer.REQUEST_PARAMETERS_PARAMETER_NAME, Collections.EMPTY_MAP);
errorParams.put("Log Line", logLine);
Agent.instance().getDefaultRPMService().getErrorService().reportError(new ThrowableError("NodeMonitor",t,
"NodeMonitor",errorParams,System.currentTimeMillis()));
}