frontend: implement event logging and run in parallel
There are no commits yet
Push commits to the source branch or add previously merged commits to review them.
Created by: unknwon
Implement event logging feature requested in https://github.com/sourcegraph/sourcegraph/issues/5486.
Changes in this PR:
event_logs
and insertion logiclogUserEvent
to accept new parametersevent_logs
after 93 days, and check every hourEventLogging
with default enabled
Test plan:
mutation logEvent($event: String!, $userCookieID: String!, $url: String!, $source: UserEventSource!, $argument: String) {
logEvent(event: $event, userCookieID: $userCookieID, url: $url, source: $source, argument: $argument) {
alwaysNil
}
}
{
"event": "test_event",
"userCookieID": "AAABBBCCCDDD",
"url": "http://localhost:3080/api/console",
"source": "WEB"
}
Push commits to the source branch or add previously merged commits to review them.