mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
feat: Update Icon component stroke properties and enhance configmap deployment settings for telemetry
This commit is contained in:
@@ -2764,9 +2764,8 @@ const Icon: FunctionComponent<ComponentProps> = ({
|
||||
y1={sy.toFixed(2)}
|
||||
x2={ex.toFixed(2)}
|
||||
y2={ey.toFixed(2)}
|
||||
stroke="currentColor"
|
||||
strokeWidth="1.5"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
/>,
|
||||
);
|
||||
}
|
||||
@@ -2775,12 +2774,16 @@ const Icon: FunctionComponent<ComponentProps> = ({
|
||||
<>
|
||||
<polygon
|
||||
points={outerPoints.join(" ")}
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
strokeWidth="1.5"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
/>
|
||||
<circle
|
||||
cx={cx}
|
||||
cy={cy}
|
||||
r={innerR}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
/>
|
||||
<circle cx={cx} cy={cy} r={innerR} />
|
||||
{spokes}
|
||||
</>,
|
||||
);
|
||||
|
||||
@@ -154,8 +154,8 @@ data:
|
||||
|
||||
# Batch telemetry for efficient export
|
||||
batch:
|
||||
send_batch_size: 200
|
||||
send_batch_max_size: 500
|
||||
send_batch_size: 100
|
||||
send_batch_max_size: 200
|
||||
timeout: 10s
|
||||
|
||||
# Limit memory usage
|
||||
@@ -169,6 +169,15 @@ data:
|
||||
endpoint: "{{ .Values.oneuptime.url }}/otlp"
|
||||
headers:
|
||||
x-oneuptime-token: "${env:ONEUPTIME_API_KEY}"
|
||||
sending_queue:
|
||||
enabled: true
|
||||
num_consumers: 10
|
||||
queue_size: 5000
|
||||
retry_on_failure:
|
||||
enabled: true
|
||||
initial_interval: 5s
|
||||
max_interval: 60s
|
||||
max_elapsed_time: 300s
|
||||
|
||||
service:
|
||||
extensions:
|
||||
|
||||
Reference in New Issue
Block a user