SlideShare a Scribd company logo
Analytics
event properties
João Orui
Drivemode, Inc.
Google Analytics
Mixpanel
Flurry
…
a lot of promises,
but it is up to you to collect the data.
Events
some examples:
- First launch
- Pressed “sign up” button
- Authenticated successfully
- Authentication error
- Purchased in-app item
- etc...
Events
With events tracking you can
- track user activity in your app (engagement)
- find where users are dropping (funnels)
- discover what users love most in you app (retention)
now imagine as if you’re trying to understand a drop in your funnel
Sign in screen
viewed
Sign in button
clicked
50% Authenticated90%
but imagine as if you’re trying to understand a drop in your funnel
Sign in screen
viewed
Sign in button
clicked
50%
Why!?
90% Authenticated
you may think…
we screwed with the last update? let’s check out by version
app version Sign in screen viewed Sign in button clicked
2.0 200 100 (50%)
2.1 100 50 (50%)
but in some cases it can be what you expected least
screen orientation Sign in screen viewed Sign in button clicked
portrait 150 140 (93.3%)
landscape 150 10 (6.6%)
what really happened
Logo
Sign up
button
Logo
Sign up
button
what really happened
Logo
Sign up
button
Logo
Sign up
button
no button
on the
screen!!
So.. here are some useful properties for your events
About the app
- app version
- app version number
- version control sha1
- unique install id
- app settings
about the device (depends on your needs)
- bluetooth / bluetooth version
- device brand / model / manufacturer
- has nfc / telephony
- os version / SDK level
- screen orientation / size
- wifi (on or off)
- rooted (yes or not)
- has network connectivity
- system language
- device class
properties that answer important questions for your app
in our case:
- is the user driving at that moment?
- are key services running?
- what is the TTS engine used?
- has the user completed tutorials? which?
- how many destinations a user has in they database?
Tips!
Mixpanel eventsにオンデマンドにプロパティー設定する方法!
おまけに、Mixpanel APIをfluent interfaceにします!
https://gist.github.com/jfsso/1821fd5e3456b626b92f
people api
mp.people()
.put("prop1", value)
.putWithSuper("notification setting", settingValue)
.increment("action count", 1)
.send();
events
mp.superProperties()
.put("some config", configValue)
.remove("a prop")
.send();
event super props
mp.superProperties()
.put("some config", configValue)
.remove("a prop")
.send();
on demand props!
public class MixpanelEventPropertiesSetter implements Mixpanel.PropertiesSetter {
private Context mContext;
public MixpanelEventPropertiesSetter(Context context) {
mContext = context;
}
@Override public void execute(JSONObject props) throws JSONException {
props.put("App Version Code", BuildConfig.VERSION_CODE);
props.put("Device Year Class", YearClass.get(mContext));
props.put("Screen Orientation", ConfigurationUtils.getOrientationName(mContext));
}
}
Useful links
Device Year Class (by Facebook)
https://github.com/facebook/device-year-class
Puree (by Cookpad)
https://github.com/cookpad/puree-android
Mixpanel
https://github.com/mixpanel/mixpanel-android
Potatotips #24 - Analytigs and event properties

More Related Content

Viewers also liked

はじめようlocalization
はじめようlocalizationはじめようlocalization
はじめようlocalization
João Orui
 
Improving App Translations
Improving App TranslationsImproving App Translations
Improving App Translations
João Orui
 
2016-11-28 開発・改善ワークフローにおけるDeployGate利用方法
2016-11-28 開発・改善ワークフローにおけるDeployGate利用方法2016-11-28 開発・改善ワークフローにおけるDeployGate利用方法
2016-11-28 開発・改善ワークフローにおけるDeployGate利用方法
João Orui
 
Tsunami final
Tsunami finalTsunami final
Tsunami final
FIYAS KC
 
Χρήσιμες συμβουλές για τη ζωγραφική
Χρήσιμες συμβουλές για τη ζωγραφικήΧρήσιμες συμβουλές για τη ζωγραφική
Χρήσιμες συμβουλές για τη ζωγραφική
130dimotiko
 
Meminta informasi dan sengketa informasi pengalaman fitra ntb
Meminta informasi dan sengketa informasi pengalaman fitra ntbMeminta informasi dan sengketa informasi pengalaman fitra ntb
Meminta informasi dan sengketa informasi pengalaman fitra ntb
ErvynKaffah
 
LaPrimaire.Org / Le projet collectif porté par Roxane Revon
LaPrimaire.Org / Le projet collectif porté par Roxane RevonLaPrimaire.Org / Le projet collectif porté par Roxane Revon
LaPrimaire.Org / Le projet collectif porté par Roxane Revon
Hugo Ferrer
 
Mein Betrieb im Internet: So findet mich der Gast
Mein Betrieb im Internet: So findet mich der GastMein Betrieb im Internet: So findet mich der Gast
Mein Betrieb im Internet: So findet mich der Gast
Christina Steinkellner
 
Mountains
MountainsMountains
Mountains
FIYAS KC
 
Searching for Reliable Sources
Searching for Reliable SourcesSearching for Reliable Sources
Searching for Reliable Sources
doyley22
 
DynGlobal - Central America & Southern Cone Global_water_solutions
DynGlobal - Central America & Southern Cone Global_water_solutionsDynGlobal - Central America & Southern Cone Global_water_solutions
DynGlobal - Central America & Southern Cone Global_water_solutions
Vern Wright
 
Αδέσποτα ζώα
Αδέσποτα ζώαΑδέσποτα ζώα
Αδέσποτα ζώα
130dimotiko
 
Οι Τρεις Ιεράρχες
Οι Τρεις ΙεράρχεςΟι Τρεις Ιεράρχες
Οι Τρεις Ιεράρχες
130dimotiko
 
FRP Manufacturing (2010) Inc. - Product Portfolio
FRP Manufacturing (2010) Inc. - Product PortfolioFRP Manufacturing (2010) Inc. - Product Portfolio
FRP Manufacturing (2010) Inc. - Product Portfolio
Blaine Radics
 

Viewers also liked (16)

はじめようlocalization
はじめようlocalizationはじめようlocalization
はじめようlocalization
 
Improving App Translations
Improving App TranslationsImproving App Translations
Improving App Translations
 
2016-11-28 開発・改善ワークフローにおけるDeployGate利用方法
2016-11-28 開発・改善ワークフローにおけるDeployGate利用方法2016-11-28 開発・改善ワークフローにおけるDeployGate利用方法
2016-11-28 開発・改善ワークフローにおけるDeployGate利用方法
 
Tsunami final
Tsunami finalTsunami final
Tsunami final
 
Χρήσιμες συμβουλές για τη ζωγραφική
Χρήσιμες συμβουλές για τη ζωγραφικήΧρήσιμες συμβουλές για τη ζωγραφική
Χρήσιμες συμβουλές για τη ζωγραφική
 
Meminta informasi dan sengketa informasi pengalaman fitra ntb
Meminta informasi dan sengketa informasi pengalaman fitra ntbMeminta informasi dan sengketa informasi pengalaman fitra ntb
Meminta informasi dan sengketa informasi pengalaman fitra ntb
 
LaPrimaire.Org / Le projet collectif porté par Roxane Revon
LaPrimaire.Org / Le projet collectif porté par Roxane RevonLaPrimaire.Org / Le projet collectif porté par Roxane Revon
LaPrimaire.Org / Le projet collectif porté par Roxane Revon
 
Mein Betrieb im Internet: So findet mich der Gast
Mein Betrieb im Internet: So findet mich der GastMein Betrieb im Internet: So findet mich der Gast
Mein Betrieb im Internet: So findet mich der Gast
 
Karen MSM Cert
Karen MSM CertKaren MSM Cert
Karen MSM Cert
 
Mountains
MountainsMountains
Mountains
 
Searching for Reliable Sources
Searching for Reliable SourcesSearching for Reliable Sources
Searching for Reliable Sources
 
Show2
Show2Show2
Show2
 
DynGlobal - Central America & Southern Cone Global_water_solutions
DynGlobal - Central America & Southern Cone Global_water_solutionsDynGlobal - Central America & Southern Cone Global_water_solutions
DynGlobal - Central America & Southern Cone Global_water_solutions
 
Αδέσποτα ζώα
Αδέσποτα ζώαΑδέσποτα ζώα
Αδέσποτα ζώα
 
Οι Τρεις Ιεράρχες
Οι Τρεις ΙεράρχεςΟι Τρεις Ιεράρχες
Οι Τρεις Ιεράρχες
 
FRP Manufacturing (2010) Inc. - Product Portfolio
FRP Manufacturing (2010) Inc. - Product PortfolioFRP Manufacturing (2010) Inc. - Product Portfolio
FRP Manufacturing (2010) Inc. - Product Portfolio
 

Similar to Potatotips #24 - Analytigs and event properties

Mobile, Philip Nyborg
Mobile, Philip NyborgMobile, Philip Nyborg
Mobile, Philip Nyborg
IBM Danmark
 
Using mobile analytics & crash reporting
Using mobile analytics & crash reportingUsing mobile analytics & crash reporting
Using mobile analytics & crash reporting
Anjana Somathilake
 
Android_ver_01
Android_ver_01Android_ver_01
Android_ver_01
Senthil ACS
 
Mobile app development using PhoneGap - A comprehensive walkthrough - Touch T...
Mobile app development using PhoneGap - A comprehensive walkthrough - Touch T...Mobile app development using PhoneGap - A comprehensive walkthrough - Touch T...
Mobile app development using PhoneGap - A comprehensive walkthrough - Touch T...
RIA RUI Society
 
Windows Phone 7 Unleashed Session 1
Windows Phone 7 Unleashed Session 1Windows Phone 7 Unleashed Session 1
Windows Phone 7 Unleashed Session 1
Wes Yanaga
 
Construir Aplicações Silverlight para Windows Phone 7
Construir Aplicações Silverlight para Windows Phone 7Construir Aplicações Silverlight para Windows Phone 7
Construir Aplicações Silverlight para Windows Phone 7
Comunidade NetPonto
 
TMA Going Mobile
TMA Going MobileTMA Going Mobile
TMA Going Mobile
TincanPipPip
 
Fake it 'til you make it
Fake it 'til you make itFake it 'til you make it
Fake it 'til you make it
Jonathan Snook
 
Native, Web or Hybrid Mobile App Development?
Native, Web or Hybrid Mobile App Development?Native, Web or Hybrid Mobile App Development?
Native, Web or Hybrid Mobile App Development?
Sura Gonzalez
 
The Future of Web Apps
The Future of Web AppsThe Future of Web Apps
The Future of Web Apps
iCiDIGITAL
 
Mobile App Analytics. Why, How, What's new - Mar 2019
Mobile App Analytics. Why, How, What's new - Mar 2019Mobile App Analytics. Why, How, What's new - Mar 2019
Mobile App Analytics. Why, How, What's new - Mar 2019
Dmitry Klymenko
 
Force.com Canvas: Salesforce1, SAML, & Apex...Oh My!
Force.com Canvas: Salesforce1, SAML, & Apex...Oh My!Force.com Canvas: Salesforce1, SAML, & Apex...Oh My!
Force.com Canvas: Salesforce1, SAML, & Apex...Oh My!
Salesforce Developers
 
Planning Your Progressive Web App
Planning Your Progressive Web AppPlanning Your Progressive Web App
Planning Your Progressive Web App
Jason Grigsby
 
Google App Inventor
Google App InventorGoogle App Inventor
Google App Inventor
Michael Trest
 
mobiprobe-featurs
mobiprobe-featursmobiprobe-featurs
mobiprobe-featurs
MobiProbe
 
Android mobile app security offensive security workshop
Android mobile app security   offensive security workshopAndroid mobile app security   offensive security workshop
Android mobile app security offensive security workshop
Abhinav Sejpal
 
Key Architectural Aspects of a Enterprise Mobility Solution
Key Architectural Aspects of a Enterprise Mobility SolutionKey Architectural Aspects of a Enterprise Mobility Solution
Key Architectural Aspects of a Enterprise Mobility Solution
roshanjk
 
AIR Mobile Development Overview
AIR Mobile Development OverviewAIR Mobile Development Overview
AIR Mobile Development Overview
mario_vieira
 
Un backend: pour tous vos objets connectés
Un backend: pour tous vos objets connectésUn backend: pour tous vos objets connectés
Un backend: pour tous vos objets connectés
Amazon Web Services
 
Intro to PhoneGap and PhoneGap Build
Intro to PhoneGap and PhoneGap BuildIntro to PhoneGap and PhoneGap Build
Intro to PhoneGap and PhoneGap Build
Chris Griffith
 

Similar to Potatotips #24 - Analytigs and event properties (20)

Mobile, Philip Nyborg
Mobile, Philip NyborgMobile, Philip Nyborg
Mobile, Philip Nyborg
 
Using mobile analytics & crash reporting
Using mobile analytics & crash reportingUsing mobile analytics & crash reporting
Using mobile analytics & crash reporting
 
Android_ver_01
Android_ver_01Android_ver_01
Android_ver_01
 
Mobile app development using PhoneGap - A comprehensive walkthrough - Touch T...
Mobile app development using PhoneGap - A comprehensive walkthrough - Touch T...Mobile app development using PhoneGap - A comprehensive walkthrough - Touch T...
Mobile app development using PhoneGap - A comprehensive walkthrough - Touch T...
 
Windows Phone 7 Unleashed Session 1
Windows Phone 7 Unleashed Session 1Windows Phone 7 Unleashed Session 1
Windows Phone 7 Unleashed Session 1
 
Construir Aplicações Silverlight para Windows Phone 7
Construir Aplicações Silverlight para Windows Phone 7Construir Aplicações Silverlight para Windows Phone 7
Construir Aplicações Silverlight para Windows Phone 7
 
TMA Going Mobile
TMA Going MobileTMA Going Mobile
TMA Going Mobile
 
Fake it 'til you make it
Fake it 'til you make itFake it 'til you make it
Fake it 'til you make it
 
Native, Web or Hybrid Mobile App Development?
Native, Web or Hybrid Mobile App Development?Native, Web or Hybrid Mobile App Development?
Native, Web or Hybrid Mobile App Development?
 
The Future of Web Apps
The Future of Web AppsThe Future of Web Apps
The Future of Web Apps
 
Mobile App Analytics. Why, How, What's new - Mar 2019
Mobile App Analytics. Why, How, What's new - Mar 2019Mobile App Analytics. Why, How, What's new - Mar 2019
Mobile App Analytics. Why, How, What's new - Mar 2019
 
Force.com Canvas: Salesforce1, SAML, & Apex...Oh My!
Force.com Canvas: Salesforce1, SAML, & Apex...Oh My!Force.com Canvas: Salesforce1, SAML, & Apex...Oh My!
Force.com Canvas: Salesforce1, SAML, & Apex...Oh My!
 
Planning Your Progressive Web App
Planning Your Progressive Web AppPlanning Your Progressive Web App
Planning Your Progressive Web App
 
Google App Inventor
Google App InventorGoogle App Inventor
Google App Inventor
 
mobiprobe-featurs
mobiprobe-featursmobiprobe-featurs
mobiprobe-featurs
 
Android mobile app security offensive security workshop
Android mobile app security   offensive security workshopAndroid mobile app security   offensive security workshop
Android mobile app security offensive security workshop
 
Key Architectural Aspects of a Enterprise Mobility Solution
Key Architectural Aspects of a Enterprise Mobility SolutionKey Architectural Aspects of a Enterprise Mobility Solution
Key Architectural Aspects of a Enterprise Mobility Solution
 
AIR Mobile Development Overview
AIR Mobile Development OverviewAIR Mobile Development Overview
AIR Mobile Development Overview
 
Un backend: pour tous vos objets connectés
Un backend: pour tous vos objets connectésUn backend: pour tous vos objets connectés
Un backend: pour tous vos objets connectés
 
Intro to PhoneGap and PhoneGap Build
Intro to PhoneGap and PhoneGap BuildIntro to PhoneGap and PhoneGap Build
Intro to PhoneGap and PhoneGap Build
 

Recently uploaded

Microservice Teams - How the cloud changes the way we work
Microservice Teams - How the cloud changes the way we workMicroservice Teams - How the cloud changes the way we work
Microservice Teams - How the cloud changes the way we work
Sven Peters
 
Odoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
Odoo ERP Vs. Traditional ERP Systems – A Comparative AnalysisOdoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
Odoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
Envertis Software Solutions
 
How to write a program in any programming language
How to write a program in any programming languageHow to write a program in any programming language
How to write a program in any programming language
Rakesh Kumar R
 
socradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdfsocradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdf
SOCRadar
 
E-commerce Development Services- Hornet Dynamics
E-commerce Development Services- Hornet DynamicsE-commerce Development Services- Hornet Dynamics
E-commerce Development Services- Hornet Dynamics
Hornet Dynamics
 
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Łukasz Chruściel
 
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
Crescat
 
Requirement Traceability in Xen Functional Safety
Requirement Traceability in Xen Functional SafetyRequirement Traceability in Xen Functional Safety
Requirement Traceability in Xen Functional Safety
Ayan Halder
 
8 Best Automated Android App Testing Tool and Framework in 2024.pdf
8 Best Automated Android App Testing Tool and Framework in 2024.pdf8 Best Automated Android App Testing Tool and Framework in 2024.pdf
8 Best Automated Android App Testing Tool and Framework in 2024.pdf
kalichargn70th171
 
Measures in SQL (SIGMOD 2024, Santiago, Chile)
Measures in SQL (SIGMOD 2024, Santiago, Chile)Measures in SQL (SIGMOD 2024, Santiago, Chile)
Measures in SQL (SIGMOD 2024, Santiago, Chile)
Julian Hyde
 
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit ParisNeo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j
 
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
mz5nrf0n
 
A Study of Variable-Role-based Feature Enrichment in Neural Models of Code
A Study of Variable-Role-based Feature Enrichment in Neural Models of CodeA Study of Variable-Role-based Feature Enrichment in Neural Models of Code
A Study of Variable-Role-based Feature Enrichment in Neural Models of Code
Aftab Hussain
 
Using Xen Hypervisor for Functional Safety
Using Xen Hypervisor for Functional SafetyUsing Xen Hypervisor for Functional Safety
Using Xen Hypervisor for Functional Safety
Ayan Halder
 
Lecture 2 - software testing SE 412.pptx
Lecture 2 - software testing SE 412.pptxLecture 2 - software testing SE 412.pptx
Lecture 2 - software testing SE 412.pptx
TaghreedAltamimi
 
2024 eCommerceDays Toulouse - Sylius 2.0.pdf
2024 eCommerceDays Toulouse - Sylius 2.0.pdf2024 eCommerceDays Toulouse - Sylius 2.0.pdf
2024 eCommerceDays Toulouse - Sylius 2.0.pdf
Łukasz Chruściel
 
Mobile App Development Company In Noida | Drona Infotech
Mobile App Development Company In Noida | Drona InfotechMobile App Development Company In Noida | Drona Infotech
Mobile App Development Company In Noida | Drona Infotech
Drona Infotech
 
Oracle Database 19c New Features for DBAs and Developers.pptx
Oracle Database 19c New Features for DBAs and Developers.pptxOracle Database 19c New Features for DBAs and Developers.pptx
Oracle Database 19c New Features for DBAs and Developers.pptx
Remote DBA Services
 
Using Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query PerformanceUsing Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query Performance
Grant Fritchey
 
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdfTop Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
VALiNTRY360
 

Recently uploaded (20)

Microservice Teams - How the cloud changes the way we work
Microservice Teams - How the cloud changes the way we workMicroservice Teams - How the cloud changes the way we work
Microservice Teams - How the cloud changes the way we work
 
Odoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
Odoo ERP Vs. Traditional ERP Systems – A Comparative AnalysisOdoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
Odoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
 
How to write a program in any programming language
How to write a program in any programming languageHow to write a program in any programming language
How to write a program in any programming language
 
socradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdfsocradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdf
 
E-commerce Development Services- Hornet Dynamics
E-commerce Development Services- Hornet DynamicsE-commerce Development Services- Hornet Dynamics
E-commerce Development Services- Hornet Dynamics
 
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
 
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
 
Requirement Traceability in Xen Functional Safety
Requirement Traceability in Xen Functional SafetyRequirement Traceability in Xen Functional Safety
Requirement Traceability in Xen Functional Safety
 
8 Best Automated Android App Testing Tool and Framework in 2024.pdf
8 Best Automated Android App Testing Tool and Framework in 2024.pdf8 Best Automated Android App Testing Tool and Framework in 2024.pdf
8 Best Automated Android App Testing Tool and Framework in 2024.pdf
 
Measures in SQL (SIGMOD 2024, Santiago, Chile)
Measures in SQL (SIGMOD 2024, Santiago, Chile)Measures in SQL (SIGMOD 2024, Santiago, Chile)
Measures in SQL (SIGMOD 2024, Santiago, Chile)
 
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit ParisNeo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
 
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
 
A Study of Variable-Role-based Feature Enrichment in Neural Models of Code
A Study of Variable-Role-based Feature Enrichment in Neural Models of CodeA Study of Variable-Role-based Feature Enrichment in Neural Models of Code
A Study of Variable-Role-based Feature Enrichment in Neural Models of Code
 
Using Xen Hypervisor for Functional Safety
Using Xen Hypervisor for Functional SafetyUsing Xen Hypervisor for Functional Safety
Using Xen Hypervisor for Functional Safety
 
Lecture 2 - software testing SE 412.pptx
Lecture 2 - software testing SE 412.pptxLecture 2 - software testing SE 412.pptx
Lecture 2 - software testing SE 412.pptx
 
2024 eCommerceDays Toulouse - Sylius 2.0.pdf
2024 eCommerceDays Toulouse - Sylius 2.0.pdf2024 eCommerceDays Toulouse - Sylius 2.0.pdf
2024 eCommerceDays Toulouse - Sylius 2.0.pdf
 
Mobile App Development Company In Noida | Drona Infotech
Mobile App Development Company In Noida | Drona InfotechMobile App Development Company In Noida | Drona Infotech
Mobile App Development Company In Noida | Drona Infotech
 
Oracle Database 19c New Features for DBAs and Developers.pptx
Oracle Database 19c New Features for DBAs and Developers.pptxOracle Database 19c New Features for DBAs and Developers.pptx
Oracle Database 19c New Features for DBAs and Developers.pptx
 
Using Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query PerformanceUsing Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query Performance
 
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdfTop Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
 

Potatotips #24 - Analytigs and event properties