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
# 80% of maximum memory up to 2G, adjust for low memory environments
153
+
limit_mib: 1500
154
+
# 25% of limit up to 2G, adjust for low memory environments
155
+
spike_limit_mib: 512
156
+
check_interval: 5s
157
+
connectors:
158
+
routing/logs:
159
+
default_pipelines: [logs/out-default]
160
+
error_mode: ignore
161
+
table:
162
+
- context: log
163
+
statement: route() where IsMatch(attributes["rr-web.event"], ".*")
164
+
pipelines: [logs/out-rrweb]
165
+
exporters:
166
+
debug:
167
+
verbosity: detailed
168
+
sampling_initial: 5
169
+
sampling_thereafter: 200
170
+
clickhouse/rrweb:
171
+
database: ${env:CLICKHOUSE_DATABASE}
172
+
endpoint: ${env:CLICKHOUSE_ENDPOINT}
173
+
password: ${env:CLICKHOUSE_PASSWORD}
174
+
username: ${env:CLICKHOUSE_USER}
175
+
ttl: 720h
176
+
logs_table_name: hyperdx_sessions
177
+
timeout: 5s
178
+
retry_on_failure:
179
+
enabled: true
180
+
initial_interval: 5s
181
+
max_interval: 30s
182
+
max_elapsed_time: 300s
183
+
clickhouse:
184
+
database: ${env:CLICKHOUSE_DATABASE}
185
+
endpoint: ${env:CLICKHOUSE_ENDPOINT}
186
+
password: ${env:CLICKHOUSE_PASSWORD}
187
+
username: ${env:CLICKHOUSE_USER}
188
+
ttl: 720h
189
+
timeout: 5s
190
+
retry_on_failure:
191
+
enabled: true
192
+
initial_interval: 5s
193
+
max_interval: 30s
194
+
max_elapsed_time: 300s
195
+
extensions:
196
+
health_check:
197
+
endpoint: :13133
198
+
service:
199
+
pipelines:
200
+
traces:
201
+
receivers: [otlp/hyperdx]
202
+
processors: [memory_limiter, batch]
203
+
exporters: [clickhouse]
204
+
metrics:
205
+
receivers: [otlp/hyperdx]
206
+
processors: [memory_limiter, batch]
207
+
exporters: [clickhouse]
208
+
logs/in:
209
+
receivers: [otlp/hyperdx]
210
+
exporters: [routing/logs]
211
+
logs/out-default:
212
+
receivers: [routing/logs]
213
+
processors: [memory_limiter, transform, batch]
214
+
exporters: [clickhouse]
215
+
logs/out-rrweb:
216
+
receivers: [routing/logs]
217
+
processors: [memory_limiter, batch]
218
+
exporters: [clickhouse/rrweb]
219
+
71
220
```
221
+
72
222
</details>
73
223
74
224
Deploy the collector using the following Docker command, setting the respective environment variables to the connection settings recorded earlier and using the appropriate command below based on your operating system.
0 commit comments