| 
									
										
										
										
											2019-06-26 09:38:46 +03:00
										 |  |  | package reload | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/prometheus/client_golang/prometheus" | 
					
						
							| 
									
										
										
										
											2020-07-25 23:06:28 +08:00
										 |  |  | 	"github.com/prometheus/client_golang/prometheus/promauto" | 
					
						
							| 
									
										
										
										
											2019-06-26 09:38:46 +03:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Metrics for the reload plugin | 
					
						
							|  |  |  | var ( | 
					
						
							| 
									
										
										
										
											2020-03-31 14:07:36 +08:00
										 |  |  | 	// failedCount is the counter of the number of failed reload attempts. | 
					
						
							| 
									
										
										
										
											2020-07-25 23:06:28 +08:00
										 |  |  | 	failedCount = promauto.NewCounter(prometheus.CounterOpts{ | 
					
						
							| 
									
										
										
										
											2019-06-26 09:38:46 +03:00
										 |  |  | 		Namespace: plugin.Namespace, | 
					
						
							|  |  |  | 		Subsystem: "reload", | 
					
						
							| 
									
										
										
										
											2020-03-26 09:17:33 +01:00
										 |  |  | 		Name:      "failed_total", | 
					
						
							| 
									
										
										
										
											2019-06-26 09:38:46 +03:00
										 |  |  | 		Help:      "Counter of the number of failed reload attempts.", | 
					
						
							|  |  |  | 	}) | 
					
						
							| 
									
										
										
										
											2020-03-31 14:07:36 +08:00
										 |  |  | 	// reloadInfo is record the hash value during reload. | 
					
						
							| 
									
										
										
										
											2020-07-25 23:06:28 +08:00
										 |  |  | 	reloadInfo = promauto.NewGaugeVec(prometheus.GaugeOpts{ | 
					
						
							| 
									
										
										
										
											2020-03-25 21:33:04 +08:00
										 |  |  | 		Namespace: plugin.Namespace, | 
					
						
							|  |  |  | 		Subsystem: "reload", | 
					
						
							|  |  |  | 		Name:      "version_info", | 
					
						
							|  |  |  | 		Help:      "A metric with a constant '1' value labeled by hash, and value which type of hash generated.", | 
					
						
							|  |  |  | 	}, []string{"hash", "value"}) | 
					
						
							| 
									
										
										
										
											2019-06-26 09:38:46 +03:00
										 |  |  | ) |