-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tracking downloads with plausible and ERDDAP #172
Comments
After talking with @fostermh Since the present method @fostermh use is using the appache log on top of the container. We will attempt to log usage by having a second container running in parallel that access the nginx log of the caprover erddap app. The initial method was using appache, Matt will review if this method is compatible with NGINX which is used by caprover. |
In consequence, we will ignore this present issue while developing #166 |
expanding on the details Jessy has already posted. We will attempt to use telegraf running in a docker container to parse the nginx logs from caprover. This mirrors the current production setup in which erddap is running behind a proxy (apache) and telegraf is used to scrape the apache logs and report back on erddap usage. TODO:
|
👌🏼
…--
Steve Vandervalk
Hakai Institute
On Thu, 15 Feb 2024 at 12:44, Matthew Foster ***@***.***> wrote:
expanding on the details Jessy has already posted.
We will attempt to use telegraph running in a docker container to parse
the nginx logs from caprover. This mirrors the current production setup in
which erddap is running behind a proxy (apache) and telegraph is used to
scrape the apache logs and report back on erddap usage.
TODO:
- export nginx logs from caprover nginx container so other containers
can access them. See the following for details:
- caprover/caprover#880
<caprover/caprover#880>
- https://caprover.com/docs/nginx-customization.html
In short, update nginx config, via caprover setup page, to send
access logs to /nginx-shared/
- mount nginx logs in telegraph container (/captain/data/nginx-shared/)
and adjust log scraper settings as needed
- setup plausible page and add key to telegraph container config
- setup sentry project and add key to telegraph container config (for
cron job like monitoring)
- adjust sentry cron timeout so we don't get spammed and hate matt
- profit.
https://github.com/cioos-siooc/cwatch-telegraph
—
Reply to this email directly, view it on GitHub
<#172 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ARESN62WAR6CKJADNCB6LITYTZXULAVCNFSM6AAAAABDKSKI6SVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSNBXGMYTENBQGQ>
.
You are receiving this because you were assigned.Message ID:
***@***.***>
|
Just to add to present thread. Looks like ERDDAP itself is also suggesting to use the Tomcat/Apache/(NGINX?) log to track statistics and usage. @fostermh not sure if you started developing this after reading the ERDDAP docs but this is reassuring to see :) |
I had not read the docs but yes nice to see that we independently arrived at the same solution. Hopefully we are on the correct track. :-) |
@fostermh Thanks, I'll give this a shot on the development instance next week. |
Other options I've used to parse NGINX - out of the box - in the past. |
https://github.com/HakaiInstitute/erddap-goaccess There is an example report.html in there we will need to check against requirements. |
telegraf is scraping logs for the development version of erddap
|
Amazing "scrapping". At the next ERDDAP 2.0 meeting lets compare and contrast and figure out what next or if this is oh so done. |
haha spelling corrected. Yes would be good to contrast, sounds good. |
I just had a quick look at the plausible and for some reasons the urls it refers to have a section doubled:
Must be something related to the setup with plausible. |
sorted. the host_url environment variable must contain the protocol, which I had forgotten to include in the telegraf setup. Thanks for noticing. |
I just ran sucessfully on development.erddap.hakai.app/erddap the cde harvester. You should now I think we should have all we need now |
Nice! Lets meet at the end of this week and review these two analytics quick. |
|
#166 is getting close to be able to running accordingly and need a few fine tuning and clean. One issue left is to be able to track the data downloads via plausible.
We can easily deploy scripts via the init.d folder within an erddap container and I think this would be the ideal method to implement the plausible download tracker.
@fostermh How is setup right now your log scrapper for tracking downloads. Can we include the dependacies within a Dockerfile and add the script via an executable file?
See example of the Dockerfile: here
and list of executable to run on the container start here: https://github.com/HakaiInstitute/hakai-datasets/tree/caprover-deploy/init.d
Any files within
init.d
set as executable or matching. *.sh will get executed when a container is started.The text was updated successfully, but these errors were encountered: