Fix env var capitalization (#192)

This commit is contained in:
pollfly 2022-02-23 13:12:53 +02:00 committed by GitHub
parent 20c45bf7c3
commit 0ec0aa83be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -780,24 +780,24 @@ To override your configuration file / defaults, set the following OS environment
**How can I track OS environment variables with experiments?** <a id="track-env-vars"></a>
Set the OS environment variable `ClearML_LOG_ENVIRONMENT` with the variables you need track, either:
Set the OS environment variable `CLEARML_LOG_ENVIRONMENT` with the variables you need track, either:
* All environment variables:
```
export ClearML_LOG_ENVIRONMENT="*"
export CLEARML_LOG_ENVIRONMENT="*"
```
* Specific environment variables, for example, log `PWD` and `PYTHONPATH`:
```
export ClearML_LOG_ENVIRONMENT="PWD,PYTHONPATH"
export CLEARML_LOG_ENVIRONMENT="PWD,PYTHONPATH"
```
* No environment variables:
```
export ClearML_LOG_ENVIRONMENT=
export CLEARML_LOG_ENVIRONMENT=
```
## ClearML Hosted Service