Skip to content

Commit

Permalink
Merge branch 'users/grchoi/systems-datasource' of https://github.com/…
Browse files Browse the repository at this point in the history
…ni/systemlink-grafana-plugins into users/grchoi/systems-datasource
  • Loading branch information
ggracechoi committed Aug 11, 2023
2 parents 1f0a6fb + 9892440 commit b426f0c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/datasources/system/SystemDataSource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ export class SystemDataSource extends DataSourceApi<SystemQuery> {
{ name: 'vendor', values: metadataResponse.data.map(m => m.vendor) },
{ name: 'operating system', values: metadataResponse.data.map(m => m.osFullName) },
{ name: 'ip address', values: metadataResponse.data.map(m => this.getIpAddress(m.ip4Interfaces, m.ip6Interfaces)) },
{ name: 'workspace', values: metadataResponse.data.map(m => m.workspace) }, ]
{ name: 'workspace', values: metadataResponse.data.map(m => m.workspace) },
]
});
}
}));
Expand Down

0 comments on commit b426f0c

Please sign in to comment.