Package com.newrelic.agent.errors

Examples of com.newrelic.agent.errors.ThrowableError


  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()));
  }
View Full Code Here

TOP

Related Classes of com.newrelic.agent.errors.ThrowableError

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.