Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
GrimoireLab FOSDEM 2018
Search
Jesus M. Gonzalez-Barahona
February 03, 2018
Programming
1
110
GrimoireLab FOSDEM 2018
Lightning Talk "GrimoireLab: Free Software for Software Development Analytics", FOSDEM 2018
Jesus M. Gonzalez-Barahona
February 03, 2018
Tweet
Share
More Decks by Jesus M. Gonzalez-Barahona
See All by Jesus M. Gonzalez-Barahona
Technical lag for software deployments
jgbarah
0
460
Meet GrimoireLab: Making your life easier
jgbarah
0
210
slides.pdf
jgbarah
0
180
Perceval, Graal and Arthur: The Quest for Software Project Data
jgbarah
0
130
GrimoireLab made simple: Using the basic stuff from Python
jgbarah
0
110
Nuestra responsabilidad con la tecnología
jgbarah
1
140
Un rato con amigos
jgbarah
0
240
CHAOSS Webinars: GrimoireLab
jgbarah
0
230
¿Así que tú crees que la tecnología es neutra?
jgbarah
2
420
Other Decks in Programming
See All in Programming
複雑化したリポジトリをなんとかした話 pipenvからuvによるモノレポ構成への移行
satoshi256kbyte
1
740
Breaking Up with Big ViewModels — Without Breaking Your Architecture (droidcon Berlin 2025)
steliosf
PRO
1
290
CSC305 Lecture 02
javiergs
PRO
1
260
私はどうやって技術力を上げたのか
yusukebe
43
17k
XP, Testing and ninja testing ZOZ5
m_seki
2
250
Django Ninja による API 開発効率化とリプレースの実践
kashewnuts
0
890
CSC509 Lecture 01
javiergs
PRO
1
430
Your Perfect Project Setup for Angular @BASTA! 2025 in Mainz
manfredsteyer
PRO
0
110
『毎日の移動』を支えるGoバックエンド内製開発
yutautsugi
2
110
あなたの知らない「動画広告」の世界 - iOSDC Japan 2025
ukitaka
0
350
アメ車でサンノゼを走ってきたよ!
s_shimotori
0
130
なぜあの開発者はDevRelに伴走し続けるのか / Why Does That Developer Keep Running Alongside DevRel?
nrslib
2
360
Featured
See All Featured
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.2k
For a Future-Friendly Web
brad_frost
180
9.9k
Building Flexible Design Systems
yeseniaperezcruz
329
39k
Intergalactic Javascript Robots from Outer Space
tanoku
273
27k
Build The Right Thing And Hit Your Dates
maggiecrowley
37
2.9k
How To Stay Up To Date on Web Technology
chriscoyier
791
250k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
15
1.7k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
1.6k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.1k
How to Think Like a Performance Engineer
csswizardry
27
2k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Transcript
chaoss.community GrimoireLab: free software for software development analytics Lightning talk
at FOSDEM Jesus M. Gonzalez-Barahona Brussels, Belgium, Feb 4th 2018 speakerdeck.com/jgbarah @jgbarah
chaoss.community /me Like six years ago I was having coffees
with the gang of Bitergia founders Involved in the company since then bitergia.com I work at Universidad Rey Juan Carlos... ...researching about software development gsyc.es/~jgb My two hats:
chaoss.community ... Produce integrated, open source software for analyzing software
development ….
chaoss.community GrimoireLab Software development analytics with free, open source software
(a CHAOSS project) grimoirelab.github.io grimoirelab.gitbooks.io/tutorial
chaoss.community Software development analytics opnfv.biterg.io
chaoss.community Try it!! docker run -p 5601:5601 -v $(pwd)/credentials.cfg:/mordred-override.cfg -t
grimoirelab/full credentials.cfg: [github] api-token = XXX
chaoss.community GrimoireLab architecture
chaoss.community Architecture: extraction
chaoss.community Example: Perceval $ python3 -m venv /tmp/gl $ source
/tmp/gl/bin/activate (gl) $ pip install perceval (gl) $ perceval git https://github.com/grimoirelab/perceval (gl) $ perceval github grimoirelab perceval --sleep-for-rate -t XXXXX ...
chaoss.community Example: Perceval from perceval.backends.core.git import Git repo_url = 'http://github.com/grimoirelab/perceval.git'
repo_dir = '/tmp/perceval.git' repo = Git(uri=repo_url, gitpath=repo_dir) for commit in repo.fetch(): print(commit['data']['commit'])
chaoss.community Architecture: enrichment
chaoss.community Example: GrimoireELK (gl) $ pip install grimoire-elk (gl) $
p2o.py --enrich --index git_raw --index-enrich git \ -e http://localhost:9200 --no_inc --debug \ git https://github.com/grimoirelab/perceval.git (assumes Elasticsearch at http://localhost:9200)
chaoss.community Example: GrimoireELK
chaoss.community Architecture: exploitation
chaoss.community Example: producing a dashboard (es) $ pip install grimoire-mordred
(es) $ mordred -c mordred.cfg (assumes Elasticsearch at http://localhost:9200, Kibiter at http://localhost:5601 ) Needs: mordred.cfg, projects.json, identities.yaml, menu.yaml grimoirelab.gitbooks.io/tutorial
chaoss.community Example: producing a dashboard
chaoss.community Try GrimoireLab with a single line!! $ docker run
-p 5601:5601 -v $(pwd)/credentials.cfg:/mordred-override.cfg -t grimoirelab/full credentials.cfg: [github] api-token = XXX grimoirelab.github.io grimoirelab.gitbooks.io/tutorial http://localhost:5601