I have some metadata describing some servers that I need to do some live statistics of. The meta is just a JSON object with properties like "server-uuid":"jklsdfjklsdjfdkl","server-nickname":"NGINX-FW_2" etc.
I would like to do some filtering etc. based upon properties in the json object without having to create a table that matches the the properties.
Is Power-BI able to a analyse a column with JSON objects for properties and match against the values or do I have to do a manual splitting into a support table with FK-PK relations to get the properties exposed.
Br.
Jes R
Hi @Laro88,
I believe it should be possible. Could you post some sample/mock data and the expected result against it, so that we can better assist on this issue?
Regards
There seems to be no proper support for JSON in Power BI - at least not in any well documented way.
The solution was to use SQL servers JSON support and put this into a view accessible from power bi
, JSON_VALUE(json, '$.cloudinfo_uuid') AS cloduinfo_uuid, JSON_VALUE(json, '$.cloudinfo_name') AS cloduinfo_name
A view is also nice for pre mangling the data like merger of two columns into one as done here (extra data but no PowerBI handling and mangling).
SELECT Id, identifierid, ts, statusgroup, ident, keyname, value, statusgroup + '-' + ident AS sgandident
FROM dbo.[statistics]
Check out new user group experience and if you are a leader please create your group
100+ sessions, 100+ speakers, Product managers, MVPs, and experts. All about Power BI. Attend online or watch the recordings.
User | Count |
---|---|
395 | |
201 | |
82 | |
79 | |
63 |
User | Count |
---|---|
458 | |
221 | |
133 | |
90 | |
82 |