This sample middleware transforms Coder notification payloads into PlatformX-compatible payloads and forwards them to PlatformX by DX for tracking. It is optimized for serverless platforms such as AWS Lambda and Google Cloud Run but may require modifications to fit your organization's needs.
Note
This repository is a sample implementation. Adaptations in other languages and frameworks are possible.
Coder sends notifications via webhooks to this middleware, which processes and reformats the payload into a structure compatible with PlatformX by DX. The transformed payload is then forwarded to PlatformX for further processing and analysis.
graph LR;
Coder[Coder Server] -->|Webhook Notification| Middleware[coder-platformx-notifications];
Middleware -->|Transformed Payload| PlatformX[PlatformX API];
This middleware supports the following Coder notifications:
- Workspace Created
- Workspace Manually Updated
- User Account Created
- User Account Suspended
- User Account Activated
This middleware is optimized for serverless environments such as Google Cloud Run and AWS Lambda. If using Docker as a fallback:
git clone <repo-url>
cd <repo-directory>
docker build -t coder-platformx-events-middleware .
docker run -p 8080:8080 --env-file .env coder-platformx-events-middleware
The application expects the following environment variables when started. For local development, create a .env
file in the project root and set the following variables. A .env.sample
file is included.
Variable | Description | Example |
---|---|---|
LOG_LEVEL | Logging level (DEBUG, INFO, WARNING) | INFO |
GETDX_API_KEY | API key for PlatformX | your-api-key |
EVENTS_TRACKED | Comma-separated list of tracked events | Workspace Created,User Account Suspended |
You must be running Coder v2.19+. To configure Coder to send notifications to this middleware, set the following environment variables for your Coder server:
export CODER_NOTIFICATIONS_WEBHOOK_ENDPOINT=<your-deployed-app-url>
export CODER_NOTIFICATIONS_METHOD=webhook # Optional, as multiple methods are supported
Replace <your-deployed-app-url>
with the actual URL where this middleware is hosted.
GET /
- Health check endpointPOST /
- Webhook receiver
Logs are printed to the console and can be adjusted using the LOG_LEVEL
variable. The available levels are:
Level | Description |
---|---|
DEBUG | Most verbose, useful for debugging |
INFO | Standard logging for normal operation |
WARNING | Logs only warnings and errors |
This application was written in Python 3.11.x.
-
Clone the repository:
git clone <repo-url> cd <repo-directory>
-
Install dependencies:
pip install -r requirements.txt
-
Start the Flask development server:
python3 main.py