作者:淅沥的雨的海角_960 | 来源:互联网 | 2023-10-12 18:12
篇首语:本文由编程笔记#小编为大家整理,主要介绍了阿里云监控URL的配置笔记相关的知识,希望对你有一定的参考价值。
有很多细节需要记录
这个是服务下拉框必须有:
这个是IP服务器下拉框,必须有,注意要选择ALL。
这里要注意,不这样配置就不行,不然只能单服务下接口可以,想混合服务接口放一起就不行:
这里直接写死service服务和rpc接口就行:
默认写法:
sum by (callType) (sum_over_time(arms_app_requests_countservice="服务",rpc="接口",host=~"$host",callType=~"^dsf$|^http$|^dubbo$|^mq$|^user_method$|^producer$|^thrift$|^hsf$|^server$|^grpc$",prpc="__all__",ppid="__all__",endpoint="__all__",destId="__all__"[1m]))
还有一种正则的玩法就是这样写:
sum by (callType)和sum by (callType,service,rpc) 并无差异 数据是对等的
sum by (callType,service,rpc) (sum_over_time(arms_app_requests_countservice=~"你的服务1|服务2",rpc=~"接口1|/接口2",host=~"$host",callType=~"^dsf$|^http$|^dubbo$|^mq$|^user_method$|^producer$|^thrift$|^hsf$|^server$|^grpc$",prpc="__all__",ppid="__all__",endpoint="__all__",destId="__all__"[1m]))
画预警线