Hi,
Is it possible to know how many faculty are using speedgrader in Canvas?
li
You can go to individual users/instructors and scroll down to Page Views, you can download a CSV file.
You could possibly script this, but not sure how.
https://canvas.instructure.com/users/123/page_views.csv
I have too many users to use a lot of the API or csv files for data processes, and go for Canvas Data Portal instead.
I use the API mostly for sending/scripting tasks into Canvas.
In Canvas Data, you'd want the Requests Table.
I don't have time to dive into a query with joins for you at the moment, but here's a basic starting point.
SELECT DISTINCT user_id FROM dbo.requests WHERE url LIKE '%/gradebook/speed_grader%'
You could then join, on course, user, and even count the number of times/days the instructor hits that url.
Let me know if this is something you're interested in and I can work out an example. I like sharing examples for the community, so they are free to use and then I catalog them for our own use if/when we need them. :smileygrin:
Edit: Offering the following to start getting it into the community conversation.
I can also see that it's (speed_grader) in the asset_accessed.asset_subtype of Canvas Live Events, but you would need to store or collect these events as they happen.
Live Events (experimental) - Canvas LMS REST API Documentation
Live Events Services - Table of Contents
I'd start with Canvas Data. Live Events is tricky, and as far as I can know, is best for notification services, or temporarily handling the delay in Canvas Data.
I am calling the canvas API to get course Information. This is the endpoint that i am using /courses/{contextId}?include[]=account This is not returning the account.
Hi everyone, I am seeking some insight into how Canvas LMS handles HTTP errors and how they are reflected in the logs versus the user interface. We are currently observing the following behavior in our environment: Log-only errors: We are seeing 500 (Internal Server Error) and 503 (Service Unavailable) errors recorded in…
Hi everyone, If you write integrations against Canvas by Instructure at an institution — K-12, higher ed, corporate training, government, or anywhere in between — we'd love your feedback. We're running a short survey on the Canvas developer experience: APIs, data access, tooling, and documentation. Results will feed into…
I'm currently integrating an LTI tool and attempting to use the Activity.id.history https://canvas.instructure.com/doc/api/file.tools_variable_substitutions.html#activity-id-history variable, but I'm experiencing issues getting it to work properly. What I've Done: Added the Activity.id.history variable to my Developer…
I looked through the LTI Variable Substitutions documentation and while there are variable substitutions available for Canvas.term.name and Canvas.term.id (which is the Canvas incremented ID like "104"), I was surprised to see there was no option for Canvas.term.sisSourceId I tried testing other possible variants that may…