修改告警策略,绑定监测点

This commit is contained in:
wr
2023-04-13 18:45:00 +08:00
parent 9aa8355364
commit 1f1e262a14
6 changed files with 44 additions and 31 deletions

View File

@@ -1,27 +1,27 @@
package com.njcn.process.constant;
import com.google.common.collect.Maps;
import com.njcn.device.pq.pojo.po.DataV;
import org.springframework.cglib.beans.BeanMap;
import java.util.Map;
/**
* Description:
* 接口文档访问地址http://serverIP:port/swagger-ui.html
* Date: 2022/12/7 15:18【需求编号】
*
* @author clam
* @version V1.0.0
*/
public class Test {
public static void main(String[] args) {
Map<String, Object> map = Maps.newHashMap ( );
DataV d = new DataV ( );
BeanMap beanMap = BeanMap.create (d);
for (Object key : beanMap.keySet ( )) {
}
}
}
//package com.njcn.process.constant;
//
//import com.google.common.collect.Maps;
//import com.njcn.device.pq.pojo.po.DataV;
//import org.springframework.cglib.beans.BeanMap;
//
//import java.util.Map;
//
///**
// * Description:
// * 接口文档访问地址http://serverIP:port/swagger-ui.html
// * Date: 2022/12/7 15:18【需求编号】
// *
// * @author clam
// * @version V1.0.0
// */
//public class Test {
// public static void main(String[] args) {
//
// Map<String, Object> map = Maps.newHashMap ( );
// DataV d = new DataV ( );
// BeanMap beanMap = BeanMap.create (d);
// for (Object key : beanMap.keySet ( )) {
// }
// }
//
//}