Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 602 for v3 (0.02 sec)

  1. docs/metrics/v3.md

    Each metric endpoint may support multiple child endpoints. For example, the `/v3/system/` metric has multiple child groups as `/v3/system/<child>`. Querying the parent endpoint returns metrics for all child groups. Querying a child group returns only metrics for that child.
    
    Registered: 2024-11-03 19:28
    - Last Modified: 2024-08-02 22:30
    - 45.2K bytes
    - Viewed (0)
  2. 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 (
    Registered: 2024-11-03 19:28
    - Last Modified: 2024-08-02 00:55
    - 13.6K bytes
    - Viewed (0)
  3. cmd/metrics-v3-audit.go

    Shireesh Anjal <******@****.***> 1715352639 +0530
    Registered: 2024-11-03 19:28
    - Last Modified: 2024-05-10 14:50
    - 1.9K bytes
    - Viewed (0)
  4. cmd/metrics-v3-scanner.go

    Shireesh Anjal <******@****.***> 1716578965 +0530
    Registered: 2024-11-03 19:28
    - Last Modified: 2024-05-24 19:29
    - 2.8K bytes
    - Viewed (0)
  5. 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 ...interface{}) {
    Registered: 2024-11-03 19:28
    - Last Modified: 2024-07-15 16:28
    - 7.8K bytes
    - Viewed (0)
  6. 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.
    //
    Registered: 2024-11-03 19:28
    - Last Modified: 2024-05-09 00:51
    - 8.1K bytes
    - Viewed (0)
  7. 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
    Registered: 2024-11-03 19:28
    - Last Modified: 2024-07-30 22:28
    - 15.6K bytes
    - Viewed (0)
  8. cmd/metrics-v3-api.go

    Anis Eleuch <******@****.***> 1727197938 +0100
    Registered: 2024-11-03 19:28
    - Last Modified: 2024-09-24 17:13
    - 9.4K bytes
    - Viewed (0)
  9. cmd/metrics-v3-ilm.go

    Bala FA <******@****.***> 1717666585 +0530
    Registered: 2024-11-03 19:28
    - Last Modified: 2024-06-06 09:36
    - 2.3K bytes
    - Viewed (0)
  10. cmd/metrics-v3-replication.go

    Klaus Post <******@****.***> 1723723480 -0700
    Registered: 2024-11-03 19:28
    - Last Modified: 2024-08-15 12:04
    - 4.6K bytes
    - Viewed (0)
Back to top