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 file contains hidden or 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
Added feature gate (clickhouse.json, alpha stability) for enabling the JSON type pipeline. The Map based pipeline is still functional and is the default. (How to use feature gates)
The JSON type replaces all Map columns with the new JSON type.
JSON is sent to the server as a string.
Due to how the server stores JSON paths, OTel standard paths such as a.b.c are returned as objects a { b { c } } by the server. This can be changed via server setting in the future to return all data as flattened paths a.b.c.
Let me know if you have any questions, suggestions, etc.
Description
Depends on refactoring from #40536
Adds JSON support to the exporter.
Summary:
clickhouse.json
, alpha stability) for enabling the JSON type pipeline. TheMap
based pipeline is still functional and is the default. (How to use feature gates)Map
columns with the new JSON type.a.b.c
are returned as objectsa { b { c } }
by the server. This can be changed via server setting in the future to return all data as flattened pathsa.b.c
.Let me know if you have any questions, suggestions, etc.
Thanks!
Testing
Documentation