Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for requests (0.39 sec)

  1. docs/metrics/prometheus/grafana/minio-bucket.json

              "expr": "sum by (bucket,api) (increase(minio_bucket_requests_inflight_total{job=\"$scrape_jobs\"}[$__rate_interval]))",
              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "{{bucket,api}}",
              "refId": "A"
            }
          ],
          "thresholds": [],
          "timeRegions": [],
          "title": "Inflight Requests Rate",
          "tooltip": {
            "shared": true,
    Json
    - Registered: Sun Feb 25 19:28:16 GMT 2024
    - Last Modified: Tue Feb 20 09:45:00 GMT 2024
    - 71.4K bytes
    - Viewed (1)
  2. docs/metrics/prometheus/grafana/minio-replication.json

              "expr": "minio_cluster_replication_proxied_head_requests_total{job=\"$scrape_jobs\"}",
              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "{{instance}}",
              "refId": "A"
            }
          ],
          "thresholds": [],
          "timeRegions": [],
          "title": "Total Proxied Head Requests",
          "tooltip": {
            "shared": true,
            "sort": 2,
    Json
    - Registered: Sun Feb 25 19:28:16 GMT 2024
    - Last Modified: Tue Feb 20 09:45:00 GMT 2024
    - 61.5K bytes
    - Viewed (1)
  3. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

              "exemplar": true,
              "expr": "minio_cluster_replication_proxied_head_requests_total{job=\"$scrape_jobs\"}",
              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "{{instance}}",
              "range": true,
              "refId": "A"
            }
          ],
          "title": "Total Proxied Head Requests",
          "type": "timeseries"
        },
        {
          "datasource": {
    Json
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Mar 28 17:15:39 GMT 2024
    - 71.1K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/grafana/replication/minio-replication.json

              "expr": "minio_cluster_replication_proxied_head_requests_total{job=\"$scrape_jobs\"}",
              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "{{instance}}",
              "refId": "A"
            }
          ],
          "thresholds": [],
          "timeRegions": [],
          "title": "Total Proxied Head Requests",
          "tooltip": {
            "shared": true,
            "sort": 2,
    Json
    - Registered: Sun Mar 24 19:28:08 GMT 2024
    - Last Modified: Thu Feb 29 18:35:20 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

                      "mode": "fixed"
                    }
                  }
                ]
              },
              {
                "matcher": {
                  "id": "byName",
                  "options": "Replication Requests"
                },
                "properties": [
                  {
                    "id": "color",
                    "value": {
                      "fixedColor": "light-green",
                      "mode": "fixed"
    Json
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Mar 28 17:15:39 GMT 2024
    - 57.5K bytes
    - Viewed (0)
  6. common/scripts/metallb-native.yaml

                    description: EBGP peer is multi-hops away
                    type: boolean
                  holdTime:
                    description: Requested BGP hold time, per RFC4271.
                    type: string
                  keepaliveTime:
                    description: Requested BGP keepalive time, per RFC4271.
                    type: string
                  myASN:
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

        }
      }
    
      /** Prepares the [request] to be executed at some point in the future. */
      override fun newCall(request: Request): Call = RealCall(this, request, forWebSocket = false)
    
      /** Uses [request] to connect a new web socket. */
      override fun newWebSocket(
        request: Request,
        listener: WebSocketListener,
      ): WebSocket {
        val webSocket =
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 06 04:21:33 GMT 2024
    - 52K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    		Description:    "Request has expired",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrRequestNotReadyYet: {
    		Code:           "AccessDenied",
    		Description:    "Request is not valid yet",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrSlowDownRead: {
    		Code:           "SlowDownRead",
    		Description:    "Resource requested is unreadable, please reduce your request rate",
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 90.6K bytes
    - Viewed (6)
  9. docs/changelogs/changelog_3x.md

     *  New: Add the TLS version to the `Handshake`.
     *  New: Drop `Request.uri()` and `Request#urlString()`. Just use
        `Request.url().uri()` and `Request.url().toString()`.
     *  New: Add URL to HTTP response logging.
     *  New: Make `HttpUrl` the blessed URL method of `Request`.
    
    
    ## Version 2.x
    
    [Change log](changelog_2x.md)
    
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                if (logger.isDebugEnabled()) {
                    final List<DocWriteRequest<?>> requests = bulkRequestBuilder.request().requests();
                    final BulkItemResponse[] items = response.getItems();
                    if (requests.size() == items.length) {
                        for (int i = 0; i < requests.size(); i++) {
                            final BulkItemResponse resp = items[i];
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
Back to top