diff --git a/pkg/dist/integration_endpoint_types.yml b/pkg/dist/integration_endpoint_types.yml index 93a8175..bb9f83b 100644 --- a/pkg/dist/integration_endpoint_types.yml +++ b/pkg/dist/integration_endpoint_types.yml @@ -499,7 +499,7 @@ rsyslog: ... -----END CERTIFICATE----- format: - title: message format + title: Message format type: string default: rfc5424 enum: @@ -518,14 +518,21 @@ rsyslog: ... -----END PRIVATE KEY----- logline: - title: custom syslog message format + title: Custom syslog message format type: string min_length: 1 max_length: 512 pattern: ^[ -~\t]+$ example: <%pri%>%timestamp:::date-rfc3339% %HOSTNAME% %app-name% %msg% + max_message_size: + title: Rsyslog max message size + type: integer + default: "8192" + minimum: 2048 + maximum: 2.147483647e+09 + example: "8192" port: - title: rsyslog server port + title: Rsyslog server port type: integer default: "514" minimum: 1 @@ -539,7 +546,7 @@ rsyslog: max_length: 1024 example: TOKEN tag="LiteralValue" server: - title: rsyslog server IP address or hostname + title: Rsyslog server IP address or hostname type: string min_length: 4 max_length: 255 diff --git a/pkg/dist/service_types.yml b/pkg/dist/service_types.yml index c101586..a1ce67d 100644 --- a/pkg/dist/service_types.yml +++ b/pkg/dist/service_types.yml @@ -1161,6 +1161,10 @@ grafana: example: aiven user_error: Must consist of alpha-numeric characters and dashes max_items: 50 + auto_login: + title: Allow users to bypass the login screen and automatically log in + type: boolean + example: false client_id: title: Client ID from provider type: string @@ -1176,7 +1180,7 @@ grafana: example: bfa6gea4f129076761dcba8ce5e1e406bd83af7b user_error: Must be a valid client secret string skip_org_role_sync: - title: Automatically sync user roles. + title: Stop automatically syncing user roles type: boolean example: false team_ids: @@ -2726,6 +2730,24 @@ kafka_mirrormaker: type: integer minimum: 1 example: "60" + groups: + title: Comma-separated list of consumer groups to replicate + description: Consumer groups to replicate. Supports comma-separated group IDs and regexes. + type: string + max_length: 128 + example: .* + groups_exclude: + title: Comma-separated list of group IDs and regexes to exclude from replication + description: Exclude groups. Supports comma-separated group IDs and regexes. Excludes take precedence over includes. + type: string + max_length: 128 + example: console-consumer-.*,connect-.*,__.* + offset_lag_max: + title: Maximum offset lag before it is resynced + description: How out-of-sync a remote partition can be before it is resynced. + type: integer + minimum: 1 + example: "100" refresh_groups_enabled: title: Refresh consumer groups description: Whether to periodically check for new consumer groups. Defaults to 'true'.