Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 487 for v3 (0.14 sec)

  1. docs/metrics/v3.md

    # Metrics Version 3
    
    In metrics version 3, all metrics are available under the endpoint:
    
    ```
    /minio/metrics/v3
    ```
    
    however, a specific path under this is required.
    
    Metrics are organized into groups at paths **relative** to the top-level endpoint above.
    
    ## Metrics Request Handling
    
    Each endpoint below can be queried at different intervals as needed via a scrape configuration in Prometheus or a compatible metrics collection tool.
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Apr 17 09:18:02 GMT 2024
    - 20.7K bytes
    - Viewed (0)
  2. cmd/metrics-v3.go

    	"github.com/prometheus/client_golang/prometheus"
    	"github.com/prometheus/client_golang/prometheus/collectors"
    )
    
    // Collector paths.
    //
    // These are paths under the top-level /minio/metrics/v3 metrics endpoint. Each
    // of these paths returns a set of V3 metrics.
    const (
    	apiRequestsCollectorPath collectorPath = "/api/requests"
    	apiBucketCollectorPath   collectorPath = "/api/bucket"
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Apr 17 09:18:02 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  3. cmd/metrics-v3-cache.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"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.
    //
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Apr 17 05:10:25 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  4. 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
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Mar 10 09:15:15 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  5. cmd/metrics-v3-handler.go

    Anis Eleuch <******@****.***> 1712232280 +0100
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  6. 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)
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 11 21:22:15 GMT 2024
    - 7.5K bytes
    - Viewed (0)
  7. cmd/metrics-v3-api.go

    Aditya Manthramurthy <******@****.***> 1710062115 -0800
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Mar 10 09:15:15 GMT 2024
    - 9.2K bytes
    - Viewed (0)
  8. cmd/metrics-v3-cluster-health.go

    Aditya Manthramurthy <******@****.***> 1710062115 -0800
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Mar 10 09:15:15 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  9. cmd/metrics-v3-system-memory.go

    Shireesh Anjal <******@****.***> 1713330625 +0530
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Apr 17 05:10:25 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  10. cmd/metrics-v3-cluster-audit.go

    Shireesh Anjal <******@****.***> 1713345482 +0530
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Apr 17 09:18:02 GMT 2024
    - 1.9K bytes
    - Viewed (0)
Back to top