Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Commit

Permalink
fix(readme): update sampling vars (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nimrod Shlagman authored Oct 28, 2021
1 parent 9208b90 commit a7401fe
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,11 @@ Advanced options can be configured as a parameter to the init() method.
|metadataOnly |Boolean|`false` |Whether to send only the metadata (`true`) or also the payloads (`false`) |
|propagateTraceHeaderUrls |Array|`*` |Which outgoing requests to add traceparent headers to. Defaults to all. |
|urlPatternsToIgnore |Array|[] |Which outgoing requests to ignore (and not add traceparent to. Default to [] |
|networkSamplingRatio|Float |1.0 |How many spans are exported, configured between 0.0 (send nothing) to 1.0 (send everything)|
|maxQueueSize |Integer|2048 |Maximum queue size, afterwhich spans are dropped |
|scheduledDelayMillis|Integer|5000|Delay interval in milliseconds between two consecutive exports |
|exportTimeoutMillis|Integer|30000|How many milliseconds the export can run before it is cancelled|
|maxBatchSize |Integer|512 |Maximum batch size of every export. Has to be small or equal to maxQueueSize|
|isEpsagonDisabled |Boolean|`false` |A flag to completely disable Epsagon (can be used for tests or locally) |
|epsagonDebug |Boolean|`false` |Enable debug prints for troubleshooting. Note: if this flag is true, this will override the logLevel|
|logLevel |String|`INFO` |The default Log level. Could be one of: ```DEBUG```, ```INFO```, ```WARN```, ```ERROR```, ```ALL```.|
Expand Down

0 comments on commit a7401fe

Please sign in to comment.