英文:
setup piwik with golang
问题
我想在Go服务器上设置Piwik,我尝试在Google上搜索相关信息,唯一相关的结果是piwik.go zoey middleware,但是它没有提供如何使用该中间件的信息。如果有人能指导我正确的方向,配置Piwik或适用于Go的替代分析平台,将非常有帮助。提前感谢。
英文:
I want to setup piwik with go server, I tried searching for it in google
the only relevant result that came up was piwik.go zoey middleware
but it doesnt have any info on how to use the middleware
if anyone could point me in a right direction, to configure piwik or an alternative analytics platform suitable with go it will be really helpfull
thanks in advance
答案1
得分: 1
我已经找到你的问题,并决定为Piwik编写一个中间件。首先,你需要在PHP服务器上设置Piwik,然后你可以使用这个中间件来跟踪你的请求:https://github.com/veecue/piwik-middleware
英文:
I have found your question and decided to write a middleware for piwik. You have to set up piwik on a PHP server first, then you can use this middleware to track your requests: https://github.com/veecue/piwik-middleware
答案2
得分: 0
Piwik本身是一个PHP项目,你不能使用Go来设置它。
你提供的存储库是一些方法,用于将特定的Piwik数据发送到Piwik API。
英文:
Piwik itself is a PHP project, you can not set it up using Go.
The repository you linked to is a couple of methods to send Piwik specific data to the Piwik API.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论