Guides
Microsoft Azure
Integrate with Azure to send analytics data to Hall
Use Azure Functions to forward data to the Log visit endpoint.
Azure Functions allows you to run JavaScript (Node.js) code in a serverless environment that can be triggered by HTTP requests. Read the official documentation for more details.
Setup
- Create an Azure Function App in your preferred region.
- Create an HTTP triggered function.
- Set up the
HALL_API_KEY
application setting with your Hall API key.
Example
The example below demonstrates how to forward data from incoming requests using Azure Functions.
function.js
Deployment
To deploy this function, follow the Azure Functions deployment guide in the Azure documentation.