Skip to content

Commit a95016e

Browse files
committed
fix configuration changes on docs
1 parent 0098f30 commit a95016e

File tree

1 file changed

+22
-5
lines changed
  • docs/build-your-software-catalog/sync-data-to-catalog/kubernetes-stack/kubernetes

1 file changed

+22
-5
lines changed

docs/build-your-software-catalog/sync-data-to-catalog/kubernetes-stack/kubernetes/advanced.md

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ The following advanced configuration parameters are available:
2727
<Tabs groupId="advanced" queryString="current-config-param" defaultValue="resyncInterval" values={[
2828
{label: "Resync Interval", value: "resyncInterval"},
2929
{label: "State Key", value: "stateKey"},
30-
{label: "Verbosity (Log Level)", value: "verbosity"},
30+
{label: "Logging Level", value: "logging"},
31+
{label: "Bulk Sync", value: "bulkSync"},
3132
{label: "Event listener type", value: "eventListenerType"},
3233
{label: "CRDs to discover", value: "crdsToDiscover"},
3334
]} >
@@ -83,12 +84,28 @@ If a new resync trigger consistently aborts a running resync, it means that your
8384

8485
</TabItem>
8586

86-
<TabItem value="verbosity">
87+
<TabItem value="logging">
8788

88-
The `verbosity` parameter is used to control the verbosity level of info logs in K8s exporter's pod.
89+
The `loggingLevel` parameter is used to control the logging level of logs in K8s exporter's pod.
8990

90-
- **Default value**: `0` (show all info and error logs, including info logs of successful updates)
91-
- **Use case**: Set the value to `-1`, if you want to clear out info logs of successful entity updates. Error logs and some info logs (initialization and teardown logs), will be reported.
91+
- **Default value**: `info` (show all info and error logs, including info logs of successful updates)
92+
- **Use case**: Set the value to `error`, if you want to clear out info logs. Error logs will be reported.
93+
94+
</TabItem>
95+
96+
<TabItem value="bulkSync">
97+
98+
The `bulkSyncMaxPayloadBytes` parameter is used to control the size (in bytes) of the upsert bulks to port.
99+
100+
- **Default value**: `1048576`
101+
102+
The `bulkSyncMaxEntitiesPerBatch` parameter is used to control the number of entities to be sent as part of an upsert bulk to port.
103+
104+
- **Default value**: `20`
105+
106+
The `bulkSyncBatchTimeoutSeconds` parameter is used to control the time (in seconds) to wait until flushing an upsert bulk to port when the max entities number or size not reached.
107+
108+
- **Default value**: `5`
92109

93110
</TabItem>
94111

0 commit comments

Comments
 (0)