| 
									
										
										
										
											2020-09-17 14:01:20 -04:00
										 |  |  | // Copyright 2020 Matthew Holt and The Caddy Authors | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // Licensed under the Apache License, Version 2.0 (the "License"); | 
					
						
							|  |  |  | // you may not use this file except in compliance with the License. | 
					
						
							|  |  |  | // You may obtain a copy of the License at | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | //     http://www.apache.org/licenses/LICENSE-2.0 | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  | // distributed under the License is distributed on an "AS IS" BASIS, | 
					
						
							|  |  |  | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  | // See the License for the specific language governing permissions and | 
					
						
							|  |  |  | // limitations under the License. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package metrics | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2024-10-02 17:23:26 +03:00
										 |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2020-09-17 14:01:20 -04:00
										 |  |  | 	"net/http" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-02 17:23:26 +03:00
										 |  |  | 	"github.com/prometheus/client_golang/prometheus" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-17 14:01:20 -04:00
										 |  |  | 	"github.com/caddyserver/caddy/v2" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func init() { | 
					
						
							|  |  |  | 	caddy.RegisterModule(AdminMetrics{}) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // AdminMetrics is a module that serves a metrics endpoint so that any gathered | 
					
						
							|  |  |  | // metrics can be exposed for scraping. This module is not configurable, and | 
					
						
							|  |  |  | // is permanently mounted to the admin API endpoint at "/metrics". | 
					
						
							|  |  |  | // See the Metrics module for a configurable endpoint that is usable if the | 
					
						
							|  |  |  | // Admin API is disabled. | 
					
						
							| 
									
										
										
										
											2024-10-02 17:23:26 +03:00
										 |  |  | type AdminMetrics struct { | 
					
						
							|  |  |  | 	registry *prometheus.Registry | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	metricsHandler http.Handler | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-09-17 14:01:20 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | // CaddyModule returns the Caddy module information. | 
					
						
							|  |  |  | func (AdminMetrics) CaddyModule() caddy.ModuleInfo { | 
					
						
							|  |  |  | 	return caddy.ModuleInfo{ | 
					
						
							|  |  |  | 		ID:  "admin.api.metrics", | 
					
						
							|  |  |  | 		New: func() caddy.Module { return new(AdminMetrics) }, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-02 17:23:26 +03:00
										 |  |  | // Provision - | 
					
						
							|  |  |  | func (m *AdminMetrics) Provision(ctx caddy.Context) error { | 
					
						
							|  |  |  | 	m.registry = ctx.GetMetricsRegistry() | 
					
						
							|  |  |  | 	if m.registry == nil { | 
					
						
							|  |  |  | 		return errors.New("no metrics registry found") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	m.metricsHandler = createMetricsHandler(nil, false, m.registry) | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-17 14:01:20 -04:00
										 |  |  | // Routes returns a route for the /metrics endpoint. | 
					
						
							|  |  |  | func (m *AdminMetrics) Routes() []caddy.AdminRoute { | 
					
						
							| 
									
										
										
										
											2024-10-02 17:23:26 +03:00
										 |  |  | 	return []caddy.AdminRoute{{Pattern: "/metrics", Handler: caddy.AdminHandlerFunc(m.serveHTTP)}} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (m *AdminMetrics) serveHTTP(w http.ResponseWriter, r *http.Request) error { | 
					
						
							|  |  |  | 	m.metricsHandler.ServeHTTP(w, r) | 
					
						
							|  |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2020-09-17 14:01:20 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Interface guards | 
					
						
							|  |  |  | var ( | 
					
						
							| 
									
										
										
										
											2024-10-02 17:23:26 +03:00
										 |  |  | 	_ caddy.Provisioner = (*AdminMetrics)(nil) | 
					
						
							| 
									
										
										
										
											2020-09-17 14:01:20 -04:00
										 |  |  | 	_ caddy.AdminRouter = (*AdminMetrics)(nil) | 
					
						
							|  |  |  | ) |