Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@

This package includes functions to process the telemetry.

# Download Data

The `DownloadData` function will fetch data about the number of
downloads from the Chrome and Firefox extension stores.

# Retention Data

The [`RetentionData`][] will calculate how many users have been using the
extension for one day or two days in the last 28 days.

[`RetentionData`]: https://github.com/webhintio/hint/issues/3074
[`RetentionData`]: https://github.com/webhintio/hint/issues/3074
11 changes: 11 additions & 0 deletions function-install-data/function.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"bindings": [
{
"name": "processDailyInstalls",
"type": "timerTrigger",
"direction": "in",
"schedule": "0 0 11 * * *"
}
],
"scriptFile": "../dist/src/install-data/index.js"
}
Loading