> ## Documentation Index
> Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Source Monitoring

## Logging

The `atoti.server.source` logger hierarchy provides diagnostic output for the data loading operations. Logger names varies by source type, enabling targeted log filtering per integration.

### Logger naming

To retrieve all the Source logs, the logger name should be "atoti.server.source".

As can be seen in the class, there are also some more granular loggers, to focus on one particular aspect of
the Source module such as "atoti.server.source.csv", ...

Here is the exhaustive list:

* atoti.server.source
  * atoti.server.source.cloud
    * atoti.server.source.cloud.aws
    * atoti.server.source.cloud.azure
    * atoti.server.source.cloud.common
    * atoti.server.source.cloud.gcp
  * atoti.server.source.common
  * atoti.server.source.csv
  * atoti.server.source.jdbc
  * atoti.server.source.key\_value
  * atoti.server.source.parquet
  * atoti.server.source.pojo
  * atoti.server.source.watcher

The logger names can be found in the `com.activeviam.source.common.api.SourceLoggerConstants.class`.
