IPrometheusService.java 389 B

12345678910111213141516171819202122232425
  1. package com.jjt.biz.service;
  2. import com.alibaba.fastjson2.JSONObject;
  3. /**
  4. * API接口
  5. *
  6. * @author jjt
  7. * @date 2024-08-08
  8. */
  9. public interface IPrometheusService {
  10. /**
  11. * pinpoint接口查询
  12. *
  13. * @return 结果
  14. */
  15. public JSONObject pinpoint();
  16. /**
  17. * 普罗米修斯接口
  18. *
  19. * @return 结果
  20. */
  21. public JSONObject prometheus();
  22. }