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

Agnieszka Andrzejewska - BIM School Course in Kraków
Agnieszka Andrzejewska - BIM School Course in KrakówAgnieszka Andrzejewska - BIM School Course in Kraków
Agnieszka Andrzejewska - BIM School Course in Krakówbim.edu.pl
 
APVP,apvp apvp High quality supplier safe spot transport, 98% purity
APVP,apvp apvp High quality supplier safe spot transport, 98% purityAPVP,apvp apvp High quality supplier safe spot transport, 98% purity
APVP,apvp apvp High quality supplier safe spot transport, 98% purityamy56318795
 
Workforce Efficiency with Employee Time Tracking Software.pdf
Workforce Efficiency with Employee Time Tracking Software.pdfWorkforce Efficiency with Employee Time Tracking Software.pdf
Workforce Efficiency with Employee Time Tracking Software.pdfDeskTrack
 
KLARNA - Language Models and Knowledge Graphs: A Systems Approach
KLARNA -  Language Models and Knowledge Graphs: A Systems ApproachKLARNA -  Language Models and Knowledge Graphs: A Systems Approach
KLARNA - Language Models and Knowledge Graphs: A Systems ApproachNeo4j
 
StrimziCon 2024 - Transition to Apache Kafka on Kubernetes with Strimzi.pdf
StrimziCon 2024 - Transition to Apache Kafka on Kubernetes with Strimzi.pdfStrimziCon 2024 - Transition to Apache Kafka on Kubernetes with Strimzi.pdf
StrimziCon 2024 - Transition to Apache Kafka on Kubernetes with Strimzi.pdfsteffenkarlsson2
 
How to install and activate eGrabber JobGrabber
How to install and activate eGrabber JobGrabberHow to install and activate eGrabber JobGrabber
How to install and activate eGrabber JobGrabbereGrabber
 
COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...
COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...
COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...naitiksharma1124
 
How to pick right visual testing tool.pdf
How to pick right visual testing tool.pdfHow to pick right visual testing tool.pdf
How to pick right visual testing tool.pdfTestgrid.io
 
AI/ML Infra Meetup | Perspective on Deep Learning Framework
AI/ML Infra Meetup | Perspective on Deep Learning FrameworkAI/ML Infra Meetup | Perspective on Deep Learning Framework
AI/ML Infra Meetup | Perspective on Deep Learning FrameworkAlluxio, Inc.
 
OpenChain @ LF Japan Executive Briefing - May 2024
OpenChain @ LF Japan Executive Briefing - May 2024OpenChain @ LF Japan Executive Briefing - May 2024
OpenChain @ LF Japan Executive Briefing - May 2024Shane Coughlan
 
10 Essential Software Testing Tools You Need to Know About.pdf
10 Essential Software Testing Tools You Need to Know About.pdf10 Essential Software Testing Tools You Need to Know About.pdf
10 Essential Software Testing Tools You Need to Know About.pdfkalichargn70th171
 
IT Software Development Resume, Vaibhav jha 2024
IT Software Development Resume, Vaibhav jha 2024IT Software Development Resume, Vaibhav jha 2024
IT Software Development Resume, Vaibhav jha 2024vaibhav130304
 
JustNaik Solution Deck (stage bus sector)
JustNaik Solution Deck (stage bus sector)JustNaik Solution Deck (stage bus sector)
JustNaik Solution Deck (stage bus sector)Max Lee
 
CompTIA Security+ (Study Notes) for cs.pdf
CompTIA Security+ (Study Notes) for cs.pdfCompTIA Security+ (Study Notes) for cs.pdf
CompTIA Security+ (Study Notes) for cs.pdfFurqanuddin10
 
INGKA DIGITAL: Linked Metadata by Design
INGKA DIGITAL: Linked Metadata by DesignINGKA DIGITAL: Linked Metadata by Design
INGKA DIGITAL: Linked Metadata by DesignNeo4j
 
The Impact of PLM Software on Fashion Production
The Impact of PLM Software on Fashion ProductionThe Impact of PLM Software on Fashion Production
The Impact of PLM Software on Fashion ProductionWave PLM
 
Crafting the Perfect Measurement Sheet with PLM Integration
Crafting the Perfect Measurement Sheet with PLM IntegrationCrafting the Perfect Measurement Sheet with PLM Integration
Crafting the Perfect Measurement Sheet with PLM IntegrationWave PLM
 

Recently uploaded (20)

Agnieszka Andrzejewska - BIM School Course in Kraków
Agnieszka Andrzejewska - BIM School Course in KrakówAgnieszka Andrzejewska - BIM School Course in Kraków
Agnieszka Andrzejewska - BIM School Course in Kraków
 
APVP,apvp apvp High quality supplier safe spot transport, 98% purity
APVP,apvp apvp High quality supplier safe spot transport, 98% purityAPVP,apvp apvp High quality supplier safe spot transport, 98% purity
APVP,apvp apvp High quality supplier safe spot transport, 98% purity
 
Workforce Efficiency with Employee Time Tracking Software.pdf
Workforce Efficiency with Employee Time Tracking Software.pdfWorkforce Efficiency with Employee Time Tracking Software.pdf
Workforce Efficiency with Employee Time Tracking Software.pdf
 
KLARNA - Language Models and Knowledge Graphs: A Systems Approach
KLARNA -  Language Models and Knowledge Graphs: A Systems ApproachKLARNA -  Language Models and Knowledge Graphs: A Systems Approach
KLARNA - Language Models and Knowledge Graphs: A Systems Approach
 
StrimziCon 2024 - Transition to Apache Kafka on Kubernetes with Strimzi.pdf
StrimziCon 2024 - Transition to Apache Kafka on Kubernetes with Strimzi.pdfStrimziCon 2024 - Transition to Apache Kafka on Kubernetes with Strimzi.pdf
StrimziCon 2024 - Transition to Apache Kafka on Kubernetes with Strimzi.pdf
 
How to install and activate eGrabber JobGrabber
How to install and activate eGrabber JobGrabberHow to install and activate eGrabber JobGrabber
How to install and activate eGrabber JobGrabber
 
COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...
COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...
COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...
 
How to pick right visual testing tool.pdf
How to pick right visual testing tool.pdfHow to pick right visual testing tool.pdf
How to pick right visual testing tool.pdf
 
AI/ML Infra Meetup | Perspective on Deep Learning Framework
AI/ML Infra Meetup | Perspective on Deep Learning FrameworkAI/ML Infra Meetup | Perspective on Deep Learning Framework
AI/ML Infra Meetup | Perspective on Deep Learning Framework
 
OpenChain @ LF Japan Executive Briefing - May 2024
OpenChain @ LF Japan Executive Briefing - May 2024OpenChain @ LF Japan Executive Briefing - May 2024
OpenChain @ LF Japan Executive Briefing - May 2024
 
Top Mobile App Development Companies 2024
Top Mobile App Development Companies 2024Top Mobile App Development Companies 2024
Top Mobile App Development Companies 2024
 
10 Essential Software Testing Tools You Need to Know About.pdf
10 Essential Software Testing Tools You Need to Know About.pdf10 Essential Software Testing Tools You Need to Know About.pdf
10 Essential Software Testing Tools You Need to Know About.pdf
 
IT Software Development Resume, Vaibhav jha 2024
IT Software Development Resume, Vaibhav jha 2024IT Software Development Resume, Vaibhav jha 2024
IT Software Development Resume, Vaibhav jha 2024
 
JustNaik Solution Deck (stage bus sector)
JustNaik Solution Deck (stage bus sector)JustNaik Solution Deck (stage bus sector)
JustNaik Solution Deck (stage bus sector)
 
CompTIA Security+ (Study Notes) for cs.pdf
CompTIA Security+ (Study Notes) for cs.pdfCompTIA Security+ (Study Notes) for cs.pdf
CompTIA Security+ (Study Notes) for cs.pdf
 
AI Hackathon.pptx
AI                        Hackathon.pptxAI                        Hackathon.pptx
AI Hackathon.pptx
 
INGKA DIGITAL: Linked Metadata by Design
INGKA DIGITAL: Linked Metadata by DesignINGKA DIGITAL: Linked Metadata by Design
INGKA DIGITAL: Linked Metadata by Design
 
The Impact of PLM Software on Fashion Production
The Impact of PLM Software on Fashion ProductionThe Impact of PLM Software on Fashion Production
The Impact of PLM Software on Fashion Production
 
Crafting the Perfect Measurement Sheet with PLM Integration
Crafting the Perfect Measurement Sheet with PLM IntegrationCrafting the Perfect Measurement Sheet with PLM Integration
Crafting the Perfect Measurement Sheet with PLM Integration
 
5 Reasons Driving Warehouse Management Systems Demand
5 Reasons Driving Warehouse Management Systems Demand5 Reasons Driving Warehouse Management Systems Demand
5 Reasons Driving Warehouse Management Systems Demand
 

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