Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Hands-On Microservices with C#
Hands-On Microservices with C#

Hands-On Microservices with C#: Designing a real-world, enterprise-grade microservice ecosystem with the efficiency of C# 7

eBook
$27.98 $39.99
Paperback
$48.99
Subscription
Free Trial
Renews at $19.99p/m
:

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Hands-On Microservices with C#

ReflectInsight – Microservice Logging Redefined

Every developer needs to have a good logging tool. Unfortunately, what I mostly see happening is developers keeping up with the latest and greatest of everything but logging. Run it through Log4Net or NLog into a text file and that's it. No richness at all. Welcome to ReflectInsight.

In this chapter, we will:

  • Discuss ReflectInsight and how it provides rich logging capabilities
  • Discuss all the options available to configure ReflectInsight

If you have not used ReflectInsight from ReflectSoftware before, you are going to love this chapter. It is so incredibly important to have the right logging tool, especially in machine learning. You absolutely need to know what's going on inside your algorithm, and ReflectSoftware has the richest logging capabilities around. Especially when it comes to machine learning algorithms...

Router

The router is the central part of the logging system. All log messages are sent to the router, which can distribute the messages from there to listeners such as viewers, text files, binary files, event logs, and databases. You would typically have the router installed on a separate machine from the rest of your logging system, but you do not have to. Once installed and configured (the configuration out of the box is usually suitable for most situations), the router runs as a Windows service and has no user interface:

Log Viewer

The Log Viewer is designed to view historical log files that have been saved either manually or from the router/viewer configuration. If you are streaming a high number of messages through the system, you will no doubt collect a lot of log files that may need to be viewed. I wrote an enterprise-grade microservice system for a client that used ReflectInsight at the center of its system, and streamed messages to and through a RabbitMQ system. On average, we streamed roughly one million messages a day (it is still used in production), and, when problems arose, the Log Viewer's historical logging capabilities were invaluable:

Live Viewer

The Live Viewer is what you will use most of the time to view your real-time logging. The capabilities of the Live Viewer are extensive to say the least. Briefly, the high-performance logging allows us to monitor instrumented applications in real time by displaying log messages in the Live Viewer. We can log incredibly rich details such as Exceptions, Objects, Datasets, Images, Process and Thread Information, and Well-Formatted XML. We can also quickly and easily navigate and trace through our applications to find the information we need. The Message Details panel displays the extended details of the selected message. The details could be as simple as the message itself, or complex data such as an object, dataset, binary blob, image, process and thread information, and the content of a collection. Syntax highlighting is available for select message, types such as SQL...

Message navigation

ReflectInsight supports many ways in which to navigate through your logged messages.

You can navigate by using one of the following methods:

  • Find a matching Enter/Exit method block
  • Jump to a parent Enter/Exit method block
  • Jump from any message in a User Defined view to the All Messages view
  • Go to a message by Line Number
  • Advanced Search
  • Quick Search (active view only)
  • Message Type browse navigator
  • Bookmarks

Message properties

This panel allows us to further inspect a selected message. We can view various Date Time values, Time Zone, Process Id, Thread Id, Request Id, Category, Machine Name, and so on. We can also extend the message Properties panel by attaching user-defined properties to single or multiple...

Advanced Search

Here is what the Advanced Search dialog looks like. As you can see, you can select the message types as well as many other options that you wish to view:

The viewer provides two ways to search messages by criteria.

Quick Search

This is mainly used for simple and quick text-based searching.

Advanced Search

This is primarily used to search messages where a more complex search criterion is needed. Search criteria can include a combination of the following:

  • Message Contents
  • Message Type
  • Message Contents AND Type
  • Message Contents OR Type
  • In addition to Regular...

Time zone formatting

We can display our time details in either Standard or Military time formats. Select the Time Zone Type that best suits your location, such as Source, Local, UTC, or Custom by choosing from one of the available system time zones:

Auto Save/Purge

This is what the Auto Save/Purge section looks like:

Apart from the library's ability to Auto Save rolling log files, the Live Viewer has similar capabilities in addition to Auto Purge the top portion of a rolling log file. You can configure the Live Viewer to either Auto Save or Auto Purge by applying one of the following methods.

Auto Save

This method forces the Live Viewer to save files once a specific criterion has been met (that is on a new day and/or message limit).

Auto Purge

This method forces the Live Viewer to purge the top portion of the...

Configuration Editor

In this section, we will cover the things that you need to know about the configuration editor.

Overview

We can use the XML-based configuration file with our applications to make the ReflectInsight viewer behave the way we want it to. There are a few configuration categories, including auto save, filtering, and message coloring.

XML configuration

ReflectInsight is configured using an XML configuration file. The configuration information can be embedded within other XML configuration files such as the application or web .config file, or in a separate...

Summary

In this chapter, we learned about ReflectInsight and the incredible benefits it can provide you with . We saw how it can help a machine learning developer see exactly what is going on inside their algorithm. I encourage you to download your copy and try it out. You will never look at logging the same way again.

Exercises

  1. Configure the Live Viewer to meet your specific needs
Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Learn to build message-based microservices
  • Packed with case studies to explain the intricacies of large-scale microservices
  • Build scalable, modular, and robust architectures with C#

Description

C# is a powerful language when it comes to building applications and software architecture using rich libraries and tools such as .NET. This book will harness the strength of C# in developing microservices architectures and applications. This book shows developers how to develop an enterprise-grade, event-driven, asynchronous, message-based microservice framework using C#, .NET, and various open source tools. We will discuss how to send and receive messages, how to design many types of microservice that are truly usable in a corporate environment. We will also dissect each case and explain the code, best practices, pros and cons, and more. Through our journey, we will use many open source tools, and create file monitors, a machine learning microservice, a quantitative financial microservice that can handle bonds and credit default swaps, a deployment microservice to show you how to better manage your deployments, and memory, health status, and other microservices. By the end of this book, you will have a complete microservice ecosystem you can place into production or customize in no time.

Who is this book for?

C# developers, software architects, and professionals who want to master the art of designing the microservice architecture that is scalable based on environment. Developers should have a basic understanding of.NET application development using C# and Visual Studio

What you will learn

  • Explore different open source tools within the context of designing microservices
  • Learn to provide insulation to exception-prone function calls
  • Build common messages used between microservices for communication
  • Learn to create a microservice using our base class and interface
  • Design a quantitative financial machine microservice
  • Learn to design a microservice that is capable of using Blockchain technology

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jun 29, 2018
Length: 254 pages
Edition : 1st
Language : English
ISBN-13 : 9781789533682
Vendor :
Microsoft
Languages :
Concepts :
Tools :
:

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Jun 29, 2018
Length: 254 pages
Edition : 1st
Language : English
ISBN-13 : 9781789533682
Vendor :
Microsoft
Languages :
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 142.97
Hands-On Design Patterns with C# and .NET Core
$38.99
C# Data Structures and Algorithms
$54.99
Hands-On Microservices with C#
$48.99
Total $ 142.97 Stars icon
Banner background image

Table of Contents

15 Chapters
Let's Talk Microservices, Messages, and Tools Chevron down icon Chevron up icon
ReflectInsight – Microservice Logging Redefined Chevron down icon Chevron up icon
Creating a Base Microservice and Interface Chevron down icon Chevron up icon
Designing a Memory Management Microservice Chevron down icon Chevron up icon
Designing a Deployment Monitor Microservice Chevron down icon Chevron up icon
Designing a Scheduling Microservice Chevron down icon Chevron up icon
Designing an Email Microservice Chevron down icon Chevron up icon
Designing a File Monitoring Microservice Chevron down icon Chevron up icon
Creating a Machine Learning Microservice Chevron down icon Chevron up icon
Creating a Quantitative Financial Microservice Chevron down icon Chevron up icon
Trello Microservice – Board Status Updating Chevron down icon Chevron up icon
Microservice Manager – The Nexus Chevron down icon Chevron up icon
Creating a Blockchain Bitcoin Microservice Chevron down icon Chevron up icon
Adding Speech and Search to Your Microservice Chevron down icon Chevron up icon
Best Practices Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
(1 Ratings)
5 star 0%
4 star 0%
3 star 0%
2 star 0%
1 star 100%
Chicco Oct 25, 2018
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
Il libro è troppo caro per sole 240 pagine. Gli argomenti sarebbero anche interessanti ma non appena cominci a leggere il codice che NON ha alcuna indentazione ti passa la voglia di continuare (vedi immagine allegata). Peccato perchè negli ultimi tempi i libri della Packt sono interessanti, purtroppo questo è uscito proprio male.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.