SlideShare a Scribd company logo
1 of 30
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved1
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Intro to Error Reporting
• Russ Fustino, MVP
• CEO Fustino Brothers, Inc
• @RussFustino
• Russ@FustinoBrothers.com
1www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
A little about me
• Former Developer Evangelist for Microsoft,
Xamarin, Raygun and ComponentOne
• CEO, Fustino Brothers, Inc
• Publisher of Several Windows 8,
Windows Phone 8, iOS, and Android Apps
• MVP Microsoft Platform Developer
• Publisher of Jethro Tull App, Endorsed
www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
How did I improve app quality?
www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Find Bugs Before your Users do.
www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Why is this important?
• Common error reporting for many platforms and languages.
• Getting started?
• Need more help in analyzing errors and the cause.
• I need to know how well my apps works in production.
• If my app crashes, I wanted to know about it and what the
cause is?
• Stack traces are great, can I get in production?
• I needed more app specific information in my error reporting.
• Raygun works for Xamarin iOS an Android, but what about
Xamarin Forms?
www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
What were the Challenges?
• Common error reporting for many platforms and languages.
• Getting started?
• Need more help in analyzing errors and the cause.
• I need to know how well my apps works in production.
• If my app crashes, I wanted to know about it and what the
cause is?
• Stack traces are great, can I get in production?
• I needed more app specific information in my error reporting.
• Raygun works for Xamarin iOS an Android, but what about
Xamarin Forms?
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Agenda
• Error Reporting
• Initialization
• Dashboards for Test and Production environments
• Xamarin Dependency Injection
• Strategic areas in the code for try / catch
• Custom Tags
• Affected User support
• Passing email address from C# to an HTML page with
JavaScript for affected user support
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Error Reporting
• Did you ever send screenshots? It’s only part of the story
• Real Time Notifications, Saving Time… Saves Money
• Retain customers… Convert trials
• Only 1% of your users even tell you that something is
wrong
• If I only had stack trace, that would be gold
• Error grouping is essential, provides sanity for not
exploding my inbox email
• Bottom line… I need to improve developer productivity
and reduce cost
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Raygun Platforms
www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Initialization
Generally, one line of code … example for Xamarin iOS
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Raygun Dashboard
180 day retention period
www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Dashboards for Test and Production
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Global Dashboard
www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Grouping on Errors
• It’s not the message that counts, it’s the cause
• Use stack trace data to group
• Raygun tends to err on side of the error not in the same group
• You can merge groups. IE, stack traces are different, but it’s the
same underlining problem
www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
If an error is serious, you will know
www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Affected Users
www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Affected Users Properties
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Stack Trace is Gold
www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Try / Catch
• Raygun supports unhandled errors
• Where you want custom messages, use try catch
• Create your own subclasses of Exception to represent
state
• Examples, in my app:
• RSS Feed
• Navigating to other sites
• Handling of images
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Custom Tags
www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Passing email address
from C# to HTML Page
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Demos
• Xamarin Forms
• JavaScript
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Resources
• Some useful plugins for Xamarin (Device, Settings, etc..):
• https://github.com/jamesmontemagno/xamarin.plugins
• Affected user tracking:
• https://github.com/MindscapeHQ/raygun4net#affected-user-tracking
• Tags:
https://github.com/MindscapeHQ/raygun4net#tags-and-custom-data
• .NET Platforms:
https://raygun.io/docs/languages/net
• Language support:
https://raygun.io/docs/languages
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Resources
• Plugins:
https://raygun.io/docs/plugins /
• Workflow:
https://raygun.io/docs/workflow/
• Raygun blog:
https://raygun.io/blog/
• Case Studies:
https://raygun.io/blog/case-studies/
• Dependency Injection:
http://developer.xamarin.com/guides/cross-platform/xamarin-
forms/dependency-service/
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Summary
• Error Reporting
• Initialization
• Dashboards for Test and Production environments
• Xamarin Dependency Injection
• Strategic areas in the code for try / catch
• Custom Tags
• Affected User support
• Passing email address from C# to an HTML page with
JavaScript for affected user support
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Monthly online seminars! 2nd Monday of month
on Business and Apps
• Register at:
www.meetup.com/InBusinessLinksNetwork-
FustinoBrothersInc/
• Past presentations
http://www.inbusinessseo.net/tps-blog
33www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Twitter love
• Xamarin www.Xamarin.com
• Raygun www.Raygun.io
• Xamarin Forms: http://xamarin.com/forms
• Windows App Studio: http://appstudio.windows.com
• If you liked this session:
• @RussFustino
• @Raygunio
• @XamarinHQ
• @FustinoBrothers
• #MicrosoftAppStudio
www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
FBI: Learn, Knowledge-Base, Reward
…Powerful Apps!
It’s Easy to Connect With Us…
35www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Connect online
• At Your Computer- If Available Use a Headset
• Enter This link:
• https://www.startmeeting.com/wall/679-256-129
• Click/Tap "Join”-
- Complete your Name and eMail Address
- Then "Submit”
- The System will Guide from There
- Mike Symbol Click/Tap the Green Icon to Red
Test your speaker/mike. If headset doesn't work, or
if connection is lost - try "Rejoin”
www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568
Fustino Brothers, Inc. We Build Powerful Apps!
Theme: Learn, Knowledge-Base, Reward
All Rights Reserved
Join In – By Phone
• Join-In using a land line / mobile phone
• Dial - (530) 881-1212
• When prompted enter access code
followed by the "pound" key.
• 679-256-129#
(be sure to enter the "#" hashtag symbol)
37www.FustinoBrothers.com | @FustinoBrothers
FBI: 850.366.3232 | Fax: 1.856.267.1568

More Related Content

More from Russ Fustino

The Algorand Blockchain
The Algorand BlockchainThe Algorand Blockchain
The Algorand BlockchainRuss Fustino
 
The Algorand Blockchain Decentralized and for Developers
The Algorand Blockchain  Decentralized and for DevelopersThe Algorand Blockchain  Decentralized and for Developers
The Algorand Blockchain Decentralized and for DevelopersRuss Fustino
 
Introduction to Xamarin Forms
Introduction to Xamarin Forms Introduction to Xamarin Forms
Introduction to Xamarin Forms Russ Fustino
 
Building Blockchain Solutions with Algorand Developer Tools
Building Blockchain Solutions with Algorand Developer ToolsBuilding Blockchain Solutions with Algorand Developer Tools
Building Blockchain Solutions with Algorand Developer ToolsRuss Fustino
 
Visual studio enterprise 2017 mobile by Russ Fustino
Visual studio enterprise 2017 mobile by Russ FustinoVisual studio enterprise 2017 mobile by Russ Fustino
Visual studio enterprise 2017 mobile by Russ FustinoRuss Fustino
 
OutSystems: A more efficient way to build apps!
OutSystems: A more efficient way to build apps!OutSystems: A more efficient way to build apps!
OutSystems: A more efficient way to build apps!Russ Fustino
 
Rock'in with Russ & Xamarin Forms (FBI Deck)
Rock'in with Russ & Xamarin Forms (FBI Deck)Rock'in with Russ & Xamarin Forms (FBI Deck)
Rock'in with Russ & Xamarin Forms (FBI Deck)Russ Fustino
 
Implementing awesome crash reporting in production apps webcast
Implementing awesome crash reporting in production apps webcastImplementing awesome crash reporting in production apps webcast
Implementing awesome crash reporting in production apps webcastRuss Fustino
 
Improving Your App Quality with Raygun Error Reporting
Improving Your App Quality with Raygun Error ReportingImproving Your App Quality with Raygun Error Reporting
Improving Your App Quality with Raygun Error ReportingRuss Fustino
 
JavaScript for ASP.NET programmers (webcast) upload
JavaScript for ASP.NET programmers (webcast) uploadJavaScript for ASP.NET programmers (webcast) upload
JavaScript for ASP.NET programmers (webcast) uploadRuss Fustino
 

More from Russ Fustino (11)

The Algorand Blockchain
The Algorand BlockchainThe Algorand Blockchain
The Algorand Blockchain
 
The Algorand Blockchain Decentralized and for Developers
The Algorand Blockchain  Decentralized and for DevelopersThe Algorand Blockchain  Decentralized and for Developers
The Algorand Blockchain Decentralized and for Developers
 
Introduction to Xamarin Forms
Introduction to Xamarin Forms Introduction to Xamarin Forms
Introduction to Xamarin Forms
 
Building Blockchain Solutions with Algorand Developer Tools
Building Blockchain Solutions with Algorand Developer ToolsBuilding Blockchain Solutions with Algorand Developer Tools
Building Blockchain Solutions with Algorand Developer Tools
 
Video Streaming
Video StreamingVideo Streaming
Video Streaming
 
Visual studio enterprise 2017 mobile by Russ Fustino
Visual studio enterprise 2017 mobile by Russ FustinoVisual studio enterprise 2017 mobile by Russ Fustino
Visual studio enterprise 2017 mobile by Russ Fustino
 
OutSystems: A more efficient way to build apps!
OutSystems: A more efficient way to build apps!OutSystems: A more efficient way to build apps!
OutSystems: A more efficient way to build apps!
 
Rock'in with Russ & Xamarin Forms (FBI Deck)
Rock'in with Russ & Xamarin Forms (FBI Deck)Rock'in with Russ & Xamarin Forms (FBI Deck)
Rock'in with Russ & Xamarin Forms (FBI Deck)
 
Implementing awesome crash reporting in production apps webcast
Implementing awesome crash reporting in production apps webcastImplementing awesome crash reporting in production apps webcast
Implementing awesome crash reporting in production apps webcast
 
Improving Your App Quality with Raygun Error Reporting
Improving Your App Quality with Raygun Error ReportingImproving Your App Quality with Raygun Error Reporting
Improving Your App Quality with Raygun Error Reporting
 
JavaScript for ASP.NET programmers (webcast) upload
JavaScript for ASP.NET programmers (webcast) uploadJavaScript for ASP.NET programmers (webcast) upload
JavaScript for ASP.NET programmers (webcast) upload
 

Recently uploaded

8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech studentsHimanshiGarg82
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Bert Jan Schrijver
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrandmasabamasaba
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension AidPhilip Schwarz
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024VictoriaMetrics
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrainmasabamasaba
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...masabamasaba
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...masabamasaba
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in sowetomasabamasaba
 
tonesoftg
tonesoftgtonesoftg
tonesoftglanshi9
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationJuha-Pekka Tolvanen
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastPapp Krisztián
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyviewmasabamasaba
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfonteinmasabamasaba
 

Recently uploaded (20)

8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the Situation
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 

Intro to Error Reporting

  • 1. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved1 Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Intro to Error Reporting • Russ Fustino, MVP • CEO Fustino Brothers, Inc • @RussFustino • Russ@FustinoBrothers.com 1www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568
  • 2. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved A little about me • Former Developer Evangelist for Microsoft, Xamarin, Raygun and ComponentOne • CEO, Fustino Brothers, Inc • Publisher of Several Windows 8, Windows Phone 8, iOS, and Android Apps • MVP Microsoft Platform Developer • Publisher of Jethro Tull App, Endorsed www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568
  • 3. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved How did I improve app quality? www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568
  • 4. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Find Bugs Before your Users do. www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568
  • 5. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Why is this important? • Common error reporting for many platforms and languages. • Getting started? • Need more help in analyzing errors and the cause. • I need to know how well my apps works in production. • If my app crashes, I wanted to know about it and what the cause is? • Stack traces are great, can I get in production? • I needed more app specific information in my error reporting. • Raygun works for Xamarin iOS an Android, but what about Xamarin Forms? www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568
  • 6. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved What were the Challenges? • Common error reporting for many platforms and languages. • Getting started? • Need more help in analyzing errors and the cause. • I need to know how well my apps works in production. • If my app crashes, I wanted to know about it and what the cause is? • Stack traces are great, can I get in production? • I needed more app specific information in my error reporting. • Raygun works for Xamarin iOS an Android, but what about Xamarin Forms?
  • 7. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Agenda • Error Reporting • Initialization • Dashboards for Test and Production environments • Xamarin Dependency Injection • Strategic areas in the code for try / catch • Custom Tags • Affected User support • Passing email address from C# to an HTML page with JavaScript for affected user support
  • 8. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Error Reporting • Did you ever send screenshots? It’s only part of the story • Real Time Notifications, Saving Time… Saves Money • Retain customers… Convert trials • Only 1% of your users even tell you that something is wrong • If I only had stack trace, that would be gold • Error grouping is essential, provides sanity for not exploding my inbox email • Bottom line… I need to improve developer productivity and reduce cost
  • 9. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Raygun Platforms www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568
  • 10. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Initialization Generally, one line of code … example for Xamarin iOS
  • 11. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Raygun Dashboard 180 day retention period www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568
  • 12. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Dashboards for Test and Production
  • 13. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Global Dashboard www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568
  • 14. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Grouping on Errors • It’s not the message that counts, it’s the cause • Use stack trace data to group • Raygun tends to err on side of the error not in the same group • You can merge groups. IE, stack traces are different, but it’s the same underlining problem www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568
  • 15. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved If an error is serious, you will know www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568
  • 16. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Affected Users www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568
  • 17. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Affected Users Properties
  • 18. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Stack Trace is Gold www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568
  • 19. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Try / Catch • Raygun supports unhandled errors • Where you want custom messages, use try catch • Create your own subclasses of Exception to represent state • Examples, in my app: • RSS Feed • Navigating to other sites • Handling of images
  • 20. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Custom Tags www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568
  • 21. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Passing email address from C# to HTML Page
  • 22. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Demos • Xamarin Forms • JavaScript
  • 23. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Resources • Some useful plugins for Xamarin (Device, Settings, etc..): • https://github.com/jamesmontemagno/xamarin.plugins • Affected user tracking: • https://github.com/MindscapeHQ/raygun4net#affected-user-tracking • Tags: https://github.com/MindscapeHQ/raygun4net#tags-and-custom-data • .NET Platforms: https://raygun.io/docs/languages/net • Language support: https://raygun.io/docs/languages
  • 24. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Resources • Plugins: https://raygun.io/docs/plugins / • Workflow: https://raygun.io/docs/workflow/ • Raygun blog: https://raygun.io/blog/ • Case Studies: https://raygun.io/blog/case-studies/ • Dependency Injection: http://developer.xamarin.com/guides/cross-platform/xamarin- forms/dependency-service/
  • 25. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Summary • Error Reporting • Initialization • Dashboards for Test and Production environments • Xamarin Dependency Injection • Strategic areas in the code for try / catch • Custom Tags • Affected User support • Passing email address from C# to an HTML page with JavaScript for affected user support
  • 26. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Monthly online seminars! 2nd Monday of month on Business and Apps • Register at: www.meetup.com/InBusinessLinksNetwork- FustinoBrothersInc/ • Past presentations http://www.inbusinessseo.net/tps-blog 33www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568
  • 27. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Twitter love • Xamarin www.Xamarin.com • Raygun www.Raygun.io • Xamarin Forms: http://xamarin.com/forms • Windows App Studio: http://appstudio.windows.com • If you liked this session: • @RussFustino • @Raygunio • @XamarinHQ • @FustinoBrothers • #MicrosoftAppStudio www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568
  • 28. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved FBI: Learn, Knowledge-Base, Reward …Powerful Apps! It’s Easy to Connect With Us… 35www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568
  • 29. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Connect online • At Your Computer- If Available Use a Headset • Enter This link: • https://www.startmeeting.com/wall/679-256-129 • Click/Tap "Join”- - Complete your Name and eMail Address - Then "Submit” - The System will Guide from There - Mike Symbol Click/Tap the Green Icon to Red Test your speaker/mike. If headset doesn't work, or if connection is lost - try "Rejoin” www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568
  • 30. Fustino Brothers, Inc. We Build Powerful Apps! Theme: Learn, Knowledge-Base, Reward All Rights Reserved Join In – By Phone • Join-In using a land line / mobile phone • Dial - (530) 881-1212 • When prompted enter access code followed by the "pound" key. • 679-256-129# (be sure to enter the "#" hashtag symbol) 37www.FustinoBrothers.com | @FustinoBrothers FBI: 850.366.3232 | Fax: 1.856.267.1568