The DevOps 2.2 Toolkit by Viktor Farcic

The DevOps 2.2 Toolkit by Viktor Farcic

Author:Viktor Farcic [Viktor Farcic]
Language: eng
Format: epub
Tags: COM051240 - COMPUTERS / Software Development and Engineering / Systems Analysis and Design, COM005000 - COMPUTERS / Enterprise Applications / General, COM051430 - COMPUTERS / Software Development and Engineering / Project Management
Publisher: Packt Publishing
Published: 2018-03-13T12:08:24+00:00


docker stack deploy
-c stacks/go-demo-scale.yml
go-demo

Instrumenting services using histograms and summaries

When compared with counters and gauges, histograms are much more complex. That does not mean that they are harder to implement but that the data they provide is less simple when compared with the other metric types we explored. We'll comment on them by studying a sample code and the output it provides.

We'll switch from the vfarcic/docker-flow-swarm-listener (https://github.com/vfarcic/docker-flow-swarm-listener) repository to vfarcic/go-demo (https://github.com/vfarcic/go-demo) since it provides a simple example of a histogram.

Just as with the other types of metrics, histogram also needs to be declared as a variable of the particular type:

var (

histogram = prometheus.NewHistogramVec(prometheus.HistogramOpts{

Subsystem: "http_server",

Name: "resp_time",

Help: "Request response time",

}, []string{

"service",

"code",

"method",

"path",

})

)

The objective of the metric is to record information about response times. Its labels provide additional information like the name of the service (service), the response code (code), the method of the request (method), and the path (path). All those labels together should give us a fairly accurate picture of the response times of the service, and we'll be able to filter the results using any combination of the labels.

Next is a helper function that will allow us to record metrics easily:

func recordMetrics(start time.Time, req *http.Request, code int) {

duration := time.Since(start)

histogram.With(

prometheus.Labels{

"service": serviceName,

"code": fmt.Sprintf("%d", code),

"method": req.Method,

"path": req.URL.Path,

},

).Observe(duration.Seconds())

}

The recordMetrics function accepts argument that defines the time when a request started (start), the request itself (req), and the response code (code). We're calling histogram's' Observe function with the duration of the request expressed in seconds. The duration is obtained by calculating the time passed since the value of the start variable.

Let's take a look at one of the functions that invokes recordMetrics:

func HelloServer(w http.ResponseWriter, req *http.Request) {

start := time.Now()

defer func() { recordMetrics(start, req, http.StatusOK) }()



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Popular ebooks
Eco-friendly approach of bio-indigo synthesis and developing purification methods towards isolation of indigo from indirubin and bacterial fragments by Ramalingam Manivannan & Kaliyan Prabakaran & Young-A Son(205236)
Personalized inhaled bacteriophage therapy for treatment of multidrug-resistant Pseudomonas aeruginosa in cystic fibrosis by unknow(173730)
CONSORT 2025 statement: updated guideline for reporting randomized trials by unknow(82153)
Critical evaluation of the ProfiLER-02 study design and outcomes by Vivek Subbiah & Razelle Kurzrock(81759)
Cardiac gene therapy makes a comeback by Oliver J. Müller & Susanne Hille & Anca Kliesow Remes(81568)
Whisky: Malt Whiskies of Scotland (Collins Little Books) by dominic roskrow(74432)
Unveiling the design rules for tunable emission in graphene quantum dots: A high-throughput TDDFT and machine learning perspective by Şener Özönder & Mustafa Coşkun Özdemir & Caner Ünlü(50887)
A yeast-based oral therapeutic delivers immune checkpoint inhibitors to reduce intestinal tumor burden by unknow(40257)
Covalent hitchhikers guide proteins to the nucleus by Alexander F. Russell & Madeline F. Currie & Champak Chatterjee(40215)
Meet the Authors: Christopher R. Mansfield and Emily R. Derbyshire by Christopher R. Mansfield & Emily R. Derbyshire(40092)
Alkaline-earth metals promote propane dehydrogenation with carbon dioxide through geometric effects: Altering the reaction pathway by unknow(32728)
Induced iron vacancies boosting FeOOH loaded on sustainable Fenton-like collagen fiber membrane for efficient removal of emerging contaminants by unknow(32504)
Efficient electric-field-assisted photochemical conversion of methane to n-propanol exclusively over penetrated TiO2Ti hollow fibers by Guanghui Feng(32451)
Bi2SiO5 nanosheets as piezo-photocatalyst for efficient degradation of 2,4-Dichlorophenol by Hangyu Shi & Yifu Li & Lishan Zhang & Guoguan Liu & Qian Zhang & Xuan Ru & Shan Zhong(32383)
A novel NDIPTA organic heterojunction photocatalyst with built-in electric field for efficient hydrogen production by Jiahui Yang & Baojun Ma & Yongfa Zhu(32359)
Enhanced conversion of methane to liquid-phase oxygenates via hollow ferrite nanotube@horseradish peroxidase based photoenzymatic catalysis by Jun Duan & Shiying Fan & Xinyong Li & Shaomin Liu(32330)
Ordered macroporous superstructure of defective carbon adorned with tiny cobalt sulfide for selective electrocatalytic hydrogenation of cinnamaldehyde by Xiao-Shi Yuan & Sheng-Hua Zhou & San-Mei Wang & Wenbo Wei & Xiaofang Li & Xin-Tao Wu & Qi-Long Zhu(32256)
What's Done in Darkness by Kayla Perrin(27142)
Topological analysis of non-conjugated ethylene oxide cored dendrimers decorated with tetraphenylethylene: Insights from degree-based descriptors using the polynomial approach by A Theertha Nair & D Antony Xavier & Annmaria Baby & S Akhila(26519)
Investigation of mechanical and self-healing properties of hydroxyl-terminated polybutadiene functionalized with 2-ureido-4-pyrimidinone by Mohsen Kazazi & Mehran Hayaty & Ali Mousaviazar(26456)