Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 586 for v3 (0.01 seconds)

  1. cmd/metrics-v3.go

    // Collector paths.
    //
    // These are paths under the top-level /minio/metrics/v3 metrics endpoint. Each
    // of these paths returns a set of V3 metrics.
    //
    // Per-bucket metrics endpoints always start with /bucket and the bucket name is
    // appended to the path. e.g. if the collector path is /bucket/api, the endpoint
    // for the bucket "mybucket" would be /minio/metrics/v3/bucket/api/mybucket
    const (
    Created: 2026-04-05 19:28
    - Last Modified: 2024-08-02 00:55
    - 13.6K bytes
    - Click Count (0)
  2. cmd/metrics-v3-handler.go

    import (
    	"encoding/json"
    	"fmt"
    	"net/http"
    	"slices"
    	"strings"
    	"sync"
    
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/mcontext"
    	"github.com/minio/mux"
    	"github.com/minio/pkg/v3/env"
    	"github.com/prometheus/client_golang/prometheus"
    	"github.com/prometheus/client_golang/prometheus/promhttp"
    )
    
    type promLogger struct{}
    
    func (p promLogger) Println(v ...any) {
    Created: 2026-04-05 19:28
    - Last Modified: 2025-10-10 18:57
    - 7.7K bytes
    - Click Count (0)
  3. cmd/metrics-v3-audit.go

    Shireesh Anjal <******@****.***> 1715352639 +0530
    Created: 2026-04-05 19:28
    - Last Modified: 2024-05-10 14:50
    - 1.9K bytes
    - Click Count (0)
  4. cmd/metrics-v3-scanner.go

    Shireesh Anjal <******@****.***> 1716578965 +0530
    Created: 2026-04-05 19:28
    - Last Modified: 2024-05-24 19:29
    - 2.8K bytes
    - Click Count (0)
  5. cmd/metrics-v3-cache.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"sync"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/cachevalue"
    )
    
    // metricsCache - cache for metrics.
    //
    // When serving metrics, this cache is passed to the MetricsLoaderFn.
    //
    Created: 2026-04-05 19:28
    - Last Modified: 2025-09-28 20:59
    - 8.1K bytes
    - Click Count (0)
  6. cmd/metrics-v3-types.go

    // `GetBucketCollector` method to get a `BucketCollector` that implements the
    // prometheus.Collector interface.
    type MetricsGroup struct {
    	// Path (relative to the Metrics v3 base endpoint) at which this group of
    	// metrics is served. This value is converted into a metric name prefix
    	// using `.metricPrefix()` and is added to each metric returned.
    	CollectorPath collectorPath
    Created: 2026-04-05 19:28
    - Last Modified: 2025-02-28 19:33
    - 15.6K bytes
    - Click Count (0)
  7. cmd/metrics-v3-api.go

    Anis Eleuch <******@****.***> 1727197938 +0100
    Created: 2026-04-05 19:28
    - Last Modified: 2024-09-24 17:13
    - 9.4K bytes
    - Click Count (0)
  8. cmd/metrics-v3-ilm.go

    Bala FA <******@****.***> 1717666585 +0530
    Created: 2026-04-05 19:28
    - Last Modified: 2024-06-06 09:36
    - 2.3K bytes
    - Click Count (0)
  9. cmd/metrics-v3-replication.go

    Klaus Post <******@****.***> 1723723480 -0700
    Created: 2026-04-05 19:28
    - Last Modified: 2024-08-15 12:04
    - 4.6K bytes
    - Click Count (0)
  10. cmd/metrics-v3-system-drive.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"strconv"
    
    	"github.com/minio/madmin-go/v3"
    )
    
    // label constants
    const (
    	driveL      = "drive"
    	poolIndexL  = "pool_index"
    	setIndexL   = "set_index"
    	driveIndexL = "drive_index"
    
    	apiL = "api"
    
    	sectorSize = uint64(512)
    Created: 2026-04-05 19:28
    - Last Modified: 2025-03-30 00:56
    - 7.8K bytes
    - Click Count (0)
Back to Top