Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ExportedMetrics (0.13 sec)

  1. pkg/collateral/control.go

    	g.emit(`<h2 id="metrics">Exported metrics</h2>
    <table class="metrics">
    <thead>
    <tr><th>Metric Name</th><th>Type</th><th>Description</th></tr>
    </thead>
    <tbody>`)
    
    	for _, metric := range metrics.ExportedMetrics() {
    		if !selectFn(metric) {
    			continue
    		}
    		g.emit("<tr><td><code>", metric.Name, "</code></td><td><code>", metric.Type, "</code></td><td>", metric.Description, "</td></tr>")
    	}
    
    	g.emit(`</tbody>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top