Created
January 12, 2015 10:21
Gist for http://www.v2ex.com/t/161452
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
keys = [ | |
'status', | |
'temperature', | |
'power_up', | |
'glist', | |
'uncorrected_read', | |
'uncorrected_write', | |
] | |
mappings = {key: deepcopy(mapping) for key in keys} | |
device = data.plugin_instance | |
tags['device'] = device | |
for idx, key in enumerate(keys): | |
mappings[key][device] = values[idx] | |
redis_payload = [dict(key='hardware.storage.{0}:{1}'.format( | |
key, host), mapping=mappings[key]) for key in keys] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment