nginxinc / telemetry-exporter

Apache License 2.0
1 stars 0 forks source link

Remove field name decapitalization in the scheme #33

Closed pleshakov closed 6 months ago

pleshakov commented 6 months ago

For consistency with DataFabric examples, we make field names start with lowercase letter. As a result, we convert the first character of field name in a go struct to lowercase. For example, MyField -> myField. However, the generated scheme names for fields like HTTPRoutes look a bit ugly: HTTPRoutes -> hTTPRoutes

Acceptance criteria:

pleshakov commented 6 months ago

Fixed by #34