You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This makes future fetch operation write all values from different hosts with the tag host="pmtest3" instead of the right one.
in fetch.py, the tags are computed out of the config file:
return [{
"measurement": measurement,
"tags": config['tags'][measurement],
"time": fields['time'],
"fields": {key: value for key, value in fields.iteritems() if key != 'time'}
} for measurement, fields in data.iteritems()]
As a dirty workaround, I forced domain and tags config before the return statement:
for measurement, fields in data.iteritems():
config['tags'][measurement]['host'] = host
config['tags'][measurement]['domain'] = domain
The text was updated successfully, but these errors were encountered:
When munin contains several hosts with common metrics (for instance uptime or cpu), there is only one "tag" section with one host.
This makes future fetch operation write all values from different hosts with the tag host="pmtest3" instead of the right one.
in fetch.py, the tags are computed out of the config file:
As a dirty workaround, I forced domain and tags config before the return statement:
The text was updated successfully, but these errors were encountered: