Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshdover/fennec-telemetry
scripts to be run on mozilla/telemetry-server for grabbing fennec telemetry
https://github.com/joshdover/fennec-telemetry
Last synced: 25 days ago
JSON representation
scripts to be run on mozilla/telemetry-server for grabbing fennec telemetry
- Host: GitHub
- URL: https://github.com/joshdover/fennec-telemetry
- Owner: joshdover
- Created: 2014-03-24T19:04:14.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-09T19:22:45.000Z (over 10 years ago)
- Last Synced: 2023-03-25T01:45:17.195Z (almost 2 years ago)
- Language: Shell
- Size: 238 KB
- Stars: 0
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
fennec-telemetry
================MapReduce jobs to be run on mozilla/telemetry-server for grabbing fennec telemetry.
To run a MapReduce job:
1. Visit http://telemetry-dash.mozilla.org/ and launch a worker with your public SSH key
1. Login to machine with SSH command given (wait about 5 mins for keys to propogate)
1. Clone this repo in the home directory and run the job:
```shell
$ git clone https://github.com/gerfuls/fennec-telemetry.git
# with my_job.py and my_filter.json as files in jobs/ and filters/
$ ./fennec-telemetry/run.sh -j my_job -f my_filter
```1. Wait
1. Get results!
See all options: `./fennec-telemetry/run.sh -h`
Make a pull request if you would like to add a new job or filter!
## Notes
- You may find this [base job](jobs/base_job.py)
helpful for creating new jobs that process the event / session stream from Fennec's UI telemetry.
- UITelemetry didn't start reporting on nightly until 20140404 (the start date in the
[base filter](filters/base_filter.json)).## Useful Links
- [AustralisTelemetry](http://github.com/bwinton/AustralisTelemetry)
- [mreid's blog](http://mreid-moz.github.io/blog/2013/11/06/current-state-of-telemetry-analysis/)
- [MapReduce Docs](http://github.com/mozilla/telemetry-server/blob/master/docs/MapReduce.md)