Registry / observability / appdynamics-proxysupport-linux-x64

appdynamics-proxysupport-linux-x64

JSON →
library11.86.0pypypiunverified

This package provides platform-specific native (C/C++) extensions for proxy support and network communication for the AppDynamics Python Agent. It is an internal runtime dependency automatically managed by the main `appdynamics` agent package and is not intended for direct user interaction or import. The current version is 11.86.0 and it is released in conjunction with the main AppDynamics Python Agent.

pip install appdynamics-proxysupport-linux-x64
INSTALL
IMPORT
SIG · APPDYNAMICS-PROXYS
A
appdynamics-proxysupport-linux-x64
observabilitypythonv11.86.0
Install
2.6s avg
Import
Disk
126MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v11.86.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.910 runs
installs and imports cleanly · install 0.0s · import 0.000s · 128.2MB
glibc
py 3.103.910 runs
installs and imports cleanly · install 2.6s · import 0.000s · 129MB
126MB installed
● package 126MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

(None)
This package does not expose public symbols for direct import.
The `appdynamics-proxysupport-linux-x64` package is an internal runtime dependency used by the main `appdynamics` agent. User code should only import `appdynamics.agent`.

This package is an internal dependency of the AppDynamics Python Agent. The quickstart demonstrates the typical initialization of the *main* AppDynamics agent, which transparently utilizes this proxy support package for its network communications, especially when a proxy is configured (often via environment variables like `AD_PROXY_HOST`). Users generally install `appdynamics` directly, which then pulls in the correct platform-specific proxy support package.

import os import appdynamics.agent from appdynamics.agent import initialize # AppDynamics Agent Initialization (typical setup) # Ensure these environment variables are set in your deployment environment # e.g., in a Dockerfile, k8s manifest, or shell script # AD_CONTROLLER_HOST: Your AppDynamics Controller Hostname # AD_CONTROLLER_PORT: Your AppDynamics Controller Port (e.g., 8090) # AD_AGENT_ACCOUNT_NAME: Your AppDynamics Account Name # AD_AGENT_ACCOUNT_ACCESS_KEY: Your AppDynamics Account Access Key # AD_APPLICATION_NAME: Your Application Name # AD_TIER_NAME: Your Tier Name # AD_NODE_NAME: Your Node Name controller_host = os.environ.get('AD_CONTROLLER_HOST', 'localhost') controller_port = int(os.environ.get('AD_CONTROLLER_PORT', '8090')) account_name = os.environ.get('AD_AGENT_ACCOUNT_NAME', 'customer1') account_access_key = os.environ.get('AD_AGENT_ACCOUNT_ACCESS_KEY', '') application_name = os.environ.get('AD_APPLICATION_NAME', 'MyPythonApp') tier_name = os.environ.get('AD_TIER_NAME', 'WebTier') node_name = os.environ.get('AD_NODE_NAME', 'Node1') try: initialize( controller={'host': controller_host, 'port': controller_port, 'ssl': False}, account={'name': account_name, 'access_key': account_access_key}, application={'name': application_name, 'tier_name': tier_name, 'node_name': node_name}, # For proxy settings, these would usually be set via environment variables as well # e.g., AD_PROXY_HOST, AD_PROXY_PORT, etc. # The appdynamics-proxysupport-linux-x64 package provides the native # libraries that handle these proxy connections internally. log={'log_level': 'INFO', 'output_path': 'stdout'}, auto_instrument=True # Usually enabled for web frameworks ) print("AppDynamics Agent initialized successfully.") except Exception as e: print(f"Failed to initialize AppDynamics Agent: {e}") print("Ensure environment variables are set correctly and controller is reachable.") # Your application code would go here def my_application_function(): print("Application function running...") if __name__ == "__main__": my_application_function()
Debug
Known issues
gotchaThis package (`appdynamics-proxysupport-linux-x64`) is a platform-specific binary dependency. Installing it manually on a non-Linux x64 system will not work and can cause errors in the main AppDynamics agent.
fix
Always install the main `appdynamics` package (`pip install appdynamics`). It will automatically select and install the correct `appdynamics-proxysupport-<platform>` package for your operating system and architecture.
affects: All versions
breakingVersion mismatch between `appdynamics-proxysupport-linux-x64` and the main `appdynamics` agent. Installing incompatible versions manually can lead to runtime errors, agent failures, or incorrect data reporting.
fix
Ensure that the `appdynamics-proxysupport-linux-x64` package's version is compatible with your installed `appdynamics` agent version. It's best practice to let `pip install appdynamics` manage this dependency automatically.
affects: All versions
gotchaPython agent startup fails with warnings/errors about missing or uncallable native libraries when proxy support is enabled or required. This can happen if the `appdynamics-proxysupport-linux-x64` package's native binary cannot be loaded by the Python interpreter, often due to missing shared library dependencies (e.g., GLIBC versions).
fix
Verify the system environment meets the AppDynamics agent's prerequisites, especially for native libraries. Check agent logs for specific errors during native library loading. Consider using a compatible Linux distribution or a containerized environment with necessary libraries.
affects: All versions
Upgrade
Version history
11.86.0latest on PyPI · released Apr 7, 2026
Audit
Dependencies
appdynamicsrequiredThis package is a runtime dependency providing native proxy support for the main AppDynamics Python Agent. It is loaded internally by the agent.
Agent activity
45 hits · last 30 days
node
38
OpenAI (training)
1
Resources
appdynamics-proxysupport-linux-x64 — pip install appdynamics-proxysupport-linux-x64 · libregistry