Tools•generator
Plausible for Privacy-First Architecture
Generates privacy-compliant analytics configuration snippets based on selected tools and data minimization preferences.
Try the tool
client runnerGenerated config
Run the tool to see output.
Examples
Plausible with anonymization
{
"analytics_tool": "Plausible",
"collect_ip": "false",
"anonymize": "true",
"data_retention": "30"
}Expected output
{ "tool": "Plausible", "anonymize": true, "retention": "30d" }Matomo without IP collection
{
"analytics_tool": "Matomo",
"collect_ip": "false",
"anonymize": "false",
"data_retention": "90"
}Expected output
{ "tool": "Matomo", "disable_ip": true, "retention": "90d" }How it works
The tool constructs a configuration object by mapping selected privacy parameters to the syntax of the chosen analytics platform, ensuring compliance with data minimization principles.