-
Notifications
You must be signed in to change notification settings - Fork 20
Automate collection of various metrics #319
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
Comments
related: #207 |
Suggested path forward:
N.B. I supposed the order of (1) and (2) could be swapped :-) |
At SciPy last week, the Scientific-Python community mentioned they have put together some helpful metrics tools, including
These tools may be helpful for generating automate statistics + visualizing these |
It looks like Google removed its easy website tracking. Every tutorial I follow says to click options that no longer exist "tracking -> website tracking" in the settings. And links go to "Service Unavailable." It looks like they now want us to use another service called Google tag manager https://marketingplatform.google.com/about/tag-manager/ |
Here are a some of the questions around metrics that I think would be useful to be able to answer:
For all of these it would be great to be able to plot trends over time. Obviously, not all of these may be practical to capture. But it is a starting point :-) |
Using the embedded API it looks like people would have to log in on the API to view the metrics, so this might not be the path we want to pursue. I'm looking into making a GH action that downloads our Google analytics nightly. I'll have to pass in my log in information as secrets. Then once I have that figured out, we can make the action create a new plot nightly of the data? https://www.searchenginejournal.com/how-to-access-google-analytics-api-via-python/474458/ E: This blog post looks promising: https://janakiev.com/blog/python-google-analytics/ |
Getting the raw data should be step one. If there is a way to embed a plot in our website that might be really cool, but certainly isn't a must do. Simply displaying as text, for example, the total number of users would satisfy our NSF obligations. Having access to the raw data would allows us to analyze it anyway we want. |
I'm trying to follow the quickstart guide: https://developers.google.com/analytics/devguides/reporting/core/v4/quickstart/service-py but keep encountering permissions errors ![]() Do you know who could grant me more permissions? Would it be @kmpaul or someone in VAST billing? |
That may be a question for @dopplershift |
Ooof, not sure there. When I did this for MetPy I had sufficient permissions I guess. |
You may have to turn to the interweb for this one, @jukent . That's my favorite useless message: contact your administrator :-) |
Maybe this resource would be helpful. Apparently it is being used for Intake |
Thanks @clyne Looking into that now. Update on analytics permissions - turns out I only had view permissions. I just requested administrator permissions and it said it would email the existing administrators for them to grant me permissions but no where does it list who that is. If you get an email please grant it :) E: According to this old issue #114 @kmpaul wrote:
So I need one of you to grant me permission or take over this issue |
@jukent I got that email and I think I clicked the right buttons to grant you admin privileges. |
Try now! I made one more change. |
The page looks different now! Yay! |
An update on this: Google permissions are a maze, so while I had admin permissions to the domain I did not have them to the metrics. Joel Daves (the UCAR Cloud admin) helped me with this by fixing the permissions on UCAR's end, and it looks clear (if still sometimes confusing) the steps forward. Made some progress in enabling the API and creating the service account to interact with the metrics, and then had to table this for AGU prep. I was hoping to focus on it this week but there was the hiccup of our Google domain expiring and having to switch to AWS. While I was not 100% confident that our metrics would be unaffected by this, I did not want to focus on this the last two days. The domain transfer will be complete in the next 6 hours, but it looks safe to continue work. Remaining steps according to this guide are to
So it looks like we're close to making progress and then having a more serious conversation about what code we want to write to grab what metrics. Currently wrestling with an apt-get command not found issue that is hopefully pretty standard. I will try to resolve after lunch. |
After getting brew and the api installed, I set up the sample and edited the required fields except "VIEW_ID". Which I should be able to find at the Account Explorer. But for ProjectPythia, it says no UA views for this account. So I'll have to learn more about what UA views are as the next step before setting one up. |
UA (Universal Analytics) is their older generation measurement solution that was replaced by the Google Analytics 4 [GA4]. That said, I am not sure if Account Explorer is the best solution to do this because Pythia's account already uses the newer generation [GA4] properties. I believe that this API instead is what is actually compatible with GA4 as the docs suggests. And, it seems like the API you linked before may be the deprecated one (i.e. not compatible with Pythia's GA4 property) |
and it seems to be straightforward from this quick start using client libraries as long as you have permissions to enable an API with your Google account (I don't seem to have) |
Interesting thanks for sharing that info before I went too far down this path! The APIs you linked don't seem to work for me, they say "Service Unavailable." Same with the quick start link. |
I got the same errors when I clicked on them (and even your API links from a while ago), but they should work if you copy their link and paste in a new tab and go. Right clicking and then opening them in an incognito window also seems to work, but that wouldn't be practical as you will need to sign into your ucar google account |
Just an update here -- the analytics ap4 quick start guide I was following was deprecated at the end of January in favor of analytics v1. I thought AP4 would match up with our GA4 product, but that is just a naming coincidence and they no longer work together. On the new service, I do not have permissions to enable it -- so I'll have to email some people again. |
Update as of 3/11, opened a draft PR #407 that explains the steps I took there. The action is failing on my fork though because it says it can't find a file. I'm pretty sure this is related to fork vs upstream issues (the branch doesn't yet exist upstream). I can't look at this again until Friday because of a hackathon all week. I'll try merging this into a temporary upstream branch so that we can run the PR there. Essentially,
|
I got the automate-metrics issue to pass when using workflow_dispatch call (you can see that here). But then I had to change it to on workflow_call to let the nightly_build action call it. Now the secrets don't seem to be passed in as expected and it is failing again. I think this is a lot of progress though. |
Check it out! |
The MetPy team has scripts to collect metrics on GitHub usage that we can adapt and deploy across our various repos.
There are also BinderHub metrics that can be harvested from Jetstream.
We should automate the collection of whatever "useful" metrics we can.
cc:
@dopplershift
@ktyle
The text was updated successfully, but these errors were encountered: