1.框架提供

xxx-starter-monitor,表示该组件提供了cat打点功能。

2.自定义

XyEventLog提供了对应的静态方法,可直接调用

  1. public static void logError(Throwable e) {
  2. coreEvent.logError(e);
  3. }
  4. public static void logError(String message, Throwable e) {
  5. coreEvent.logError(message, e);
  6. }
  7. public static void logEvent(String type, String name) {
  8. coreEvent.logEvent(type, name);
  9. }
  10. public static void logMetricForCount(String metricName) {
  11. coreEvent.logMetricForCount(metricName);
  12. }
  13. public static void logMetricForCount(String metricName, int quantity) {
  14. coreEvent.logMetricForCount(metricName, quantity);
  15. }