mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
Add docs
This commit is contained in:
parent
983f7c95af
commit
6dc7ec3386
1 changed files with 36 additions and 0 deletions
|
|
@ -307,6 +307,42 @@ The config file is in the [toml format](https://github.com/toml-lang/toml) and h
|
|||
skip-verify = true
|
||||
```
|
||||
|
||||
#### Tracing Sampler Type
|
||||
|
||||
* Description: Jaeger sampler type (const, probabilistic, ratelimiting, or remote)
|
||||
* Flag: `tracing.sampler-type`
|
||||
* Env: `PILOSA_TRACING_SAMPLER_TYPE`
|
||||
* Config:
|
||||
|
||||
```toml
|
||||
[tracing]
|
||||
sampler-type = "remote"
|
||||
```
|
||||
|
||||
#### Tracing Sampler Parameter
|
||||
|
||||
* Description: Jaeger sampler parameter (number)
|
||||
* Flag: `tracing.sampler-param`
|
||||
* Env: `PILOSA_TRACING_SAMPLER_PARAM`
|
||||
* Config:
|
||||
|
||||
```toml
|
||||
[tracing]
|
||||
sampler-param = 0.001
|
||||
```
|
||||
|
||||
#### Tracing Agent Host/Port
|
||||
|
||||
* Description: Jaeger agent host:port
|
||||
* Flag: `tracing.agent-host-port`
|
||||
* Env: `PILOSA_TRACING_AGENT_HOST_PORT`
|
||||
* Config:
|
||||
|
||||
```toml
|
||||
[tracing]
|
||||
agent-host-port = "localhost:6831"
|
||||
```
|
||||
|
||||
#### Translation Map Size
|
||||
|
||||
* Description: Size in bytes of mmap to allocate for key translation
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue