Skip to content
Merged
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
4 changes: 4 additions & 0 deletions datadog_lambda/extension.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
import logging
import requests
from os import path

AGENT_URL = "http://127.0.0.1:8124"
HELLO_PATH = "/lambda/hello"
FLUSH_PATH = "/lambda/flush"
EXTENSION_PATH = "/opt/extensions/datadog-agent"

logger = logging.getLogger(__name__)


def is_extension_running():
if not path.exists(EXTENSION_PATH):
return False
try:
requests.get(AGENT_URL + HELLO_PATH)
except Exception as e:
Expand Down