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
A path to a PEM-encoded certificate to use as a trusted root when connecting to the tracing endpoint over gRPC or HTTPS. [config: tracing.trusted_certificate]
149
149
```
150
+
151
+
## Debug the configuration
152
+
153
+
{{< admonition type="note" >}}
154
+
The command recommended here prints secrets and sensitive information in
155
+
plain text. Be careful when sharing the output or storing it in logs.
156
+
{{< /admonition >}}
157
+
158
+
When the service doesn't appear to be working as expected, it can be because the
159
+
configuration is invalid. If the flags are invalid, the service won't start, but
160
+
the configuration files may contain unknown keys and thus silently ignore them.
161
+
162
+
To debug that the configuration is valid and what you expect, you can get a full
163
+
dump of the Go structures representing the configuration by running the
164
+
`print-config` command. For example:
165
+
166
+
```
167
+
docker run --rm -v ./config.json:/home/nonroot/config.json grafana/grafana-image-renderer:latest print-config
168
+
```
169
+
170
+
The command takes the exact same flags and configuration files as the `server`
0 commit comments