更新时间:2024-07-04 GMT+08:00
配置HttpClient监控项
在“编辑【HttpClient监控】监控配置”页面配置url规整配置参数:
- 采集间隔:默认60s,此处不支持修改。
- url规整配置是将url包含的参数按照配置进行汇聚,如:http://localhost/rest/v1/test/123、http://localhost/rest/v1/test/234可以汇聚成http://localhost/rest/v1/test/{id}
规整方法
规整方式有四种:startwith、endwith、include、regex
使用示例
下面给出具体的使用示例:
URL路径 |
说明 |
---|---|
/app/p?ttern |
匹配 /app/pattern 和 /app/pAttern等文件,但不包括 /app/pttern。 |
/app/*.x |
匹配app目录下所有.x结尾的文件。 |
/**/example |
匹配 /app/example,/app/foo/example 和 /example。 |
/app/**/dir/file.* |
匹配 /app/dir/file.jsp,/app/foo/dir/file.htm,/app/foo/bar/dir/file.pdf 和 /app/dir/file.c。 |
/**/*.jsp |
匹配所有 .jsp 结尾的文件。 |
父主题: 应用监控配置