Skip to main content

Add logs and snapshots (virtual breakpoints) to live applications - without stopping them.

Project description

Lightrun for Python

Lightrun is a developer-native observabity platform. It's a way to add logs, inspect the state of the current execution (in a familiar, debugger-like view), and extract any type of code-level metric on the fly - without redeploying, restarting or even stopping the running application.

Check out our docs to learn more.

Getting Started

To get started with Lightrun you'll need three things:

  1. A Lightrun Account - you can get one here.
  2. A Lightrun Plugin - you'll have instructions to download it once you create an account, but you can also check them out here.
  3. A Lightrun Agent - which is this very PyPI package! It's the thing that actually does the magic.

Once you've signed up for an account and downloaded the plugin, you can install the agent in your application.

Installing the Lightrun Agent - Directly

In order to install the Lightrun Python Agent please follow these steps:

  1. Install the python agent by running python -m pip install lightrun.

  2. Add the following code to the beginning of your main function:

try:
    import lightrun
    lightrun.enable(company_key='<COMPANY_SECRET>')
except ImportError as e:
    print("Error importing Lightrun: ", e)

You will have a <COMPANY-SECRET> auto-generated for you during the onboarding process, right after signing up for an account.

  1. Run the application as you normally would, i.e. python app.py.

You should see the application's agent popping up in the Lightrun Plugin's sidebar - you can now add logs, snapshots and metrics to your application.

Providing Credentials Via Program Arguments

You can optionally choose to provide the <COMPANY-SECRET> as program argument. To do so, run your application in the following way:

python -m lightrun --company_key='<COMAPNY-SECRET>' -- app.py

Notice - The method above won't work well with applications based on gunicorn or any other multiprocessing libraries, as the debugger won't attach to the spawned sub-processes. Please use the import method instead.

Installing the Lightrun Agent - Django

In order to run a Django web server with the Lightrun agent please follow these steps:

  1. In the application folder, install the python agent by running python -m pip install lightrun
  2. Add the following code to your manage.py file and run your Django application as you did normally before:
try:
    if os.environ.get('RUN_MAIN') or '--noreload' in sys.argv:
        import lightrun
        lightrun.enable(company_key='<COMAPNY-SECRET>')
except ImportError as e:
    print("Error importing Lightrun: ", e)

Installing the Lightrun Agent - Flask

In order to run a Flask web app with the Lightrun agent please follow these steps:

  1. In the application folder, install the python agent by running python -m pip install lightrun
  2. Add the following code to your application's main init.py or app.py (the import shouldn't be added to a specific routed method, but to the main file code instead):
try: 
    import lightrun
    lightrun.enable(company_key='<COMAPNY-SECRET>')
except ImportError as e:
    print("Error importing Lightrun: ", e)

# Example route
@app.route("/")
def hello_world():
    return '<p>Hello world!</p>'

Installing the Lightrun Agent - Apache Airflow

In order to run Lightrun for Python with Apache Airflow you'll need to decide which step of the DAG you'd like to debug. Choose one (or more) steps and:

  1. Find a place in your system that has access to the same Python interpreter that is used by Airflow, and install the python agent by running python -m pip install lightrun.
  2. In an Airflow DAG file, add the following decorator above the operators you'd like to use Lightrun with:
@lightrun_airflow_task()
def operator_name():
    # Operator code

Debugging Airflow Multi-step DAGs with Lightrun's Free Tier

Please note that the Lightrun free tier limits usage to one agent per user. In practice, note this means that each operator can be debugged individually, but you cannot debug multiple operators simultaneously.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

lightrun-1.27.0-cp311-cp311-win_amd64.whl (867.2 kB view hashes)

Uploaded CPython 3.11 Windows x86-64

lightrun-1.27.0-cp311-cp311-manylinux2010_x86_64.whl (804.6 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.12+ x86-64

lightrun-1.27.0-cp311-cp311-macosx_11_0_arm64.whl (747.9 kB view hashes)

Uploaded CPython 3.11 macOS 11.0+ ARM64

lightrun-1.27.0-cp310-cp310-win_amd64.whl (732.8 kB view hashes)

Uploaded CPython 3.10 Windows x86-64

lightrun-1.27.0-cp310-cp310-manylinux2010_x86_64.whl (763.5 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64

lightrun-1.27.0-cp310-cp310-macosx_11_0_arm64.whl (612.1 kB view hashes)

Uploaded CPython 3.10 macOS 11.0+ ARM64

lightrun-1.27.0-cp39-cp39-win_amd64.whl (734.0 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

lightrun-1.27.0-cp39-cp39-manylinux2010_x86_64.whl (606.0 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

lightrun-1.27.0-cp39-cp39-macosx_11_0_arm64.whl (556.9 kB view hashes)

Uploaded CPython 3.9 macOS 11.0+ ARM64

lightrun-1.27.0-cp38-cp38-win_amd64.whl (733.7 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

lightrun-1.27.0-cp38-cp38-manylinux2010_x86_64.whl (605.5 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

lightrun-1.27.0-cp38-cp38-macosx_11_0_arm64.whl (556.5 kB view hashes)

Uploaded CPython 3.8 macOS 11.0+ ARM64

lightrun-1.27.0-cp37-cp37m-win_amd64.whl (726.6 kB view hashes)

Uploaded CPython 3.7m Windows x86-64

lightrun-1.27.0-cp37-cp37m-manylinux2010_x86_64.whl (596.9 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

lightrun-1.27.0-cp37-cp37m-macosx_11_0_arm64.whl (547.9 kB view hashes)

Uploaded CPython 3.7m macOS 11.0+ ARM64

lightrun-1.27.0-cp36-cp36m-win_amd64.whl (726.7 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

lightrun-1.27.0-cp36-cp36m-manylinux2010_x86_64.whl (597.3 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

lightrun-1.27.0-cp36-cp36m-macosx_11_0_arm64.whl (548.3 kB view hashes)

Uploaded CPython 3.6m macOS 11.0+ ARM64

lightrun-1.27.0-cp27-cp27mu-manylinux2010_x86_64.whl (623.8 kB view hashes)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

lightrun-1.27.0-cp27-cp27m-macosx_11_0_arm64.whl (574.1 kB view hashes)

Uploaded CPython 2.7m macOS 11.0+ ARM64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page