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
Copy file name to clipboardExpand all lines: docs/environment-variables.md
+7-5
Original file line number
Diff line number
Diff line change
@@ -12,8 +12,10 @@ OpenObserve is configure through the use of below environment variables.
12
12
| ZO_LOCAL_MODE_STORAGE | disk | No |`disk` or `s3`, Applicable only for local mode , by default local disk is used as storage, we also support s3 in local mode. |
13
13
| ZO_NODE_ROLE | all | No | Possible values are : all, ingester, querier, compactor, router, alertmanager. A single node can have multiple roles id desired. Specify roles separated by comma. e.g. compactor,alertmanager |
14
14
| ZO_HTTP_PORT | 5080 | No | openobserve server listen HTTP port |
15
+
| ZO_HTTP_ADDR || No | openobserve server listen HTTP ip address |
15
16
| ZO_HTTP_IPV6_ENABLED | false | No | enable ipv6 support for HTTP |
16
-
| ZO_GRPC_PORT | 5081 | No | openobserve server listen grpc port |
17
+
| ZO_GRPC_PORT | 5081 | No | openobserve server listen gRPC port |
18
+
| ZO_GRPC_ADDR || No | openobserve server listen gRPC ip address |
17
19
| ZO_GRPC_TIMEOUT | 600 | No | grpc query timeout, default is 500 seconds |
18
20
| ZO_GRPC_ORG_HEADER_KEY | openobserve-org-id | No | header key for sending organization information for `traces` using OTLP over grpc |
19
21
| ZO_ROUTE_TIMEOUT | 600 | No | timeout for router node. |
@@ -28,7 +30,6 @@ OpenObserve is configure through the use of below environment variables.
28
30
| ZO_FEATURE_FULLTEXT_ON_ALL_FIELDS | false | No | default full text search uses `log`, `message`, `data` or selected stream fields. Enabling this option will perform full text search on each field, may hamper full text search performance |
29
31
| ZO_UI_ENABLED | true | No | default we enable embed UI, one can disable it. |
30
32
| ZO_UI_SQL_BASE64_ENABLED | false | No | Enable base64 encoding for SQL in UI. |
31
-
| ZO_METRICS_DEDUP_ENABLED | true | No | enable de-duplication for metrics |
32
33
| ZO_TRACING_ENABLED | false | No | enable it to send traces to remote trace server. |
33
34
| OTEL_OTLP_HTTP_ENDPOINT | - | No | remote trace server endpoint. |
34
35
| ZO_TRACING_HEADER_KEY | Authorization | No | remote trace server endpoint authentication header key. |
@@ -56,7 +57,8 @@ OpenObserve is configure through the use of below environment variables.
56
57
| RUST_LOG | info | No | log level, default is info, supports: error, warn, info, debug, trace |
57
58
| ZO_COLS_PER_RECORD_LIMIT | 1000 | No | number of fields allowed per records during ingestion , records having more fields than configured value will be discarded |
58
59
| ZO_PRINT_KEY_CONFIG | false | No | Print key config information in logs |
59
-
| ZO_LUA_FN_ENABLED | false | No | Enable Lua functions for ingestion and query. Do not enable this in untrusted environments due to security considerations. Use default VRL functions if unsure. |
60
+
| ZO_PRINT_KEY_SQL | false | No | Print key sql in logs |
61
+
| ZO_METRICS_DEDUP_ENABLED | true | No | enable de-duplication for metrics |
60
62
| ZO_METRICS_LEADER_PUSH_INTERVAL | 15 | No | interval at which current leader information is updated to metadata store , default 15s, unit: second |
61
63
| ZO_METRICS_LEADER_ELECTION_INTERVAL | 30 | No | interval after which new leader for metrics will be elected , when data isnt received from current leader, default 30s, unit: second |
62
64
| ZO_PROMETHEUS_HA_CLUSTER | cluster || No | for Prometheus cluster deduplication |
@@ -71,8 +73,8 @@ OpenObserve is configure through the use of below environment variables.
0 commit comments