Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added note on root logger level #872

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions contrib/opencensus-ext-azure/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,19 @@ This example shows how to send a warning level log to Azure Monitor.
logger.addHandler(AzureLogHandler(connection_string='InstrumentationKey=<your-instrumentation_key-here>'))
logger.warning('Hello, World!')

**IMPORTANT NOTE:**
The root logger for the Python logging library has a logging level set to `WARNING <https://docs.python.org/3/library/logging.html#logging.Logger.setLevel>`_. Any logs that are below this level will not actually be logged, and as such, not sent to Application Insights. More on that `here <https://docs.python.org/3/library/logging.html#logging-levels>`_.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
The root logger for the Python logging library has a logging level set to `WARNING <https://docs.python.org/3/library/logging.html#logging.Logger.setLevel>`_. Any logs that are below this level will not actually be logged, and as such, not sent to Application Insights. More on that `here <https://docs.python.org/3/library/logging.html#logging-levels>`_.
The root logger for the Python logging library has a logging level set to `WARNING <https://docs.python.org/3/library/logging.html#logging.Logger.setLevel>`_ by default. Any logs that are below this level will not actually be logged, and as such, not sent to Application Insights. More on that `here <https://docs.python.org/3/library/logging.html#logging-levels>`_.


To change this behaviour, set the desired level on the logger:

.. code:: python

# Send DEBUG and higher
logger.setLevel(logging.DEBUG)

# DEBUG is level 10, INFO is level 20
logger.info('This now gets sent to Application Insights')

Correlation
###########

Expand Down