Development

This commit is contained in:
Matthew Grotke 2026-05-27 01:08:49 -04:00
parent 9c395ab1e8
commit c0230f25d8
3 changed files with 13 additions and 2 deletions

View file

@ -312,6 +312,9 @@ def _config_datasource(name):
row['server_identity_descriptions'] = json.dumps([
s.get('description', '') for s in v.get('server_identities', []) if s.get('ip')
])
row['server_identity_hostnames'] = json.dumps([
s.get('hostname', '') for s in v.get('server_identities', []) if s.get('ip')
])
rows.append(row)
return rows