Configuration Reference
Version:2.1.0
Micronaut Control Panel Core Config Properties
🔗| Property | Type | Description | Default value |
|---|---|---|---|
|
boolean |
Enables/disables the control panel module. Default value: "true". |
true |
|
java.util.Set |
Configures the environments where the control panel module is enabled. By default, it is only enabled in the "dev" and "test" environments. |
dev,test |
|
java.lang.String |
Configures the path where the control panel can be accessed. Default value: "/control-panel". |
/control-panel |
|
boolean |
Whether to print the Control Panel URL in the logs on application startup. Default: StringUtils.TRUE |
true |
| Property | Type | Description | Default value |
|---|---|---|---|
|
boolean |
Sets whether this control panel is enabled or not. |
|
|
int |
Sets the order of this control panel, since they will be displayed sorted by order. |
|
|
java.lang.String |
Sets the title of this control panel. |
|
|
java.lang.String |
Sets the icon of this control panel. |
|
|
java.lang.String |
Sets the unique name of the control panel. Can be used in URLs. |
| Property | Type | Description | Default value |
|---|---|---|---|
|
the configured read access mode |
AUTHORIZED |
|
|
java.lang.String |
role required when authorized read access is enabled |
ROLE_CONTROL_PANEL |
|
the configured write access mode |
INHERITED |
|
|
java.lang.String |
role required when authorized write access is enabled |
Micronaut Control Panel Kafka Config Properties
🔗| Property | Type | Description | Default value |
|---|---|---|---|
|
The optional Schema Registry endpoint. |
||
|
The optional Kafka Connect endpoint. |
||
|
The optional ksqlDB endpoint. |
| Property | Type | Description | Default value |
|---|---|---|---|
|
boolean |
Enables non-destructive Kafka write actions such as producing records and updating mutable resources. |
false |
|
boolean |
Enables destructive Kafka write actions such as deleting topics, consumer groups, connectors, or schemas. |
false |
|
int |
Maximum number of bytes allowed for a produced record value. |
1048576 |
|
int |
Maximum number of bytes allowed for a produced record key. |
1024 |
|
int |
Maximum number of headers allowed on a produced record. |
20 |
|
int |
Maximum number of bytes allowed for each produced record header key. |
256 |
|
int |
Maximum number of bytes allowed for each produced record header value. |
4096 |
|
Per-action Kafka write toggles that can disable individual write operations after the top-level write gate is enabled. |