AppDynamics Python Agent Linux x64 Binary Dependencies

26.3.0 · active · verified Fri Apr 17

This package provides native binary dependencies specifically for the AppDynamics Python agent on Linux x64 systems. It is not intended for direct application use or import. The current version is 26.3.0, and its release cadence is tied to the main AppDynamics Python agent releases, providing underlying C extensions and other platform-specific binaries.

Common errors

Warnings

Install

Quickstart

The `appdynamics-bindeps-linux-x64` package is an underlying binary dependency and does not expose Python symbols for direct import or a standalone quickstart. The actual AppDynamics Python Agent is initialized via the `appdynamics` package, typically configured using environment variables. This quickstart demonstrates the general initialization pattern for the AppDynamics Python agent, which relies on the binary dependencies provided by this package.

# This package (appdynamics-bindeps-linux-x64) is a dependency and not directly imported.
# To use the AppDynamics Python Agent, you would typically install 'appdynamics'
# which usually pulls in necessary binary dependencies automatically.

# Example of main AppDynamics agent initialization (requires `pip install appdynamics`):

import os
import appdynamics.agent

# Configure Agent via Environment Variables (recommended)
# Example:
# os.environ['APPDYNAMICS_AGENT_APPLICATION_NAME'] = 'MyPythonApp'
# os.environ['APPDYNAMICS_CONTROLLER_HOST_NAME'] = 'your-controller.example.com'
# os.environ['APPDYNAMICS_CONTROLLER_PORT'] = '8090'
# os.environ['APPDYNAMICS_AGENT_ACCOUNT_NAME'] = 'customer1'
# os.environ['APPDYNAMICS_AGENT_ACCOUNT_ACCESS_KEY'] = os.environ.get('APPDYNAMICS_AGENT_ACCOUNT_ACCESS_KEY', 'YOUR_ACCESS_KEY')

# Initialize the agent
appdynamics.agent.initialize()

# Your application code would go here
# For example, instrumenting a function:
# @appdynamics.agent.track_transaction()
# def my_monitored_function():
#     print("Executing monitored function...")

print("AppDynamics agent initialized (if configured via env vars).")
print("Remember appdynamics-bindeps-linux-x64 provides underlying native libraries.")

view raw JSON →