1 2 3 4 5 6 7 8 9 10 11 12 13 |
# 数据库中原有
old_dict = {
"#1" :{ 'hostname' :c1, 'cpu_count' : 2 , 'mem_capicity' : 80 },
"#2" :{ 'hostname' :c1, 'cpu_count' : 2 , 'mem_capicity' : 80 }
"#3" :{ 'hostname' :c1, 'cpu_count' : 2 , 'mem_capicity' : 80 }
}
# cmdb 新汇报的数据
new_dict = {
"#1" :{ 'hostname' :c1, 'cpu_count' : 2 , 'mem_capicity' : 800 },
"#3" :{ 'hostname' :c1, 'cpu_count' : 2 , 'mem_capicity' : 80 }
"#4" :{ 'hostname' :c2, 'cpu_count' : 2 , 'mem_capicity' : 80 }
}
|
hello
111 | 222 | 333 | ||