Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 173 for Replikation (0.98 sec)

  1. cmd/site-replication.go

    				v2.Failed.ErrCounts[k] += v
    			}
    			if v2.XferStats == nil {
    				v2.XferStats = make(map[replication.MetricName]replication.XferStats)
    			}
    			for rm, x := range v.XferStats {
    				x2, ok := v2.XferStats[replication.MetricName(rm)]
    				if !ok {
    					x2 = replication.XferStats{}
    				}
    				x2.AvgRate += x.Avg
    				x2.CurrRate += x.Curr
    				if x.Peak > x2.PeakRate {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  2. docs/metrics/prometheus/grafana/grafana-replication.png

    grafana-replication.png...
    PNG Image
    - Registered: Sun Feb 25 19:28:16 GMT 2024
    - Last Modified: Thu Aug 31 15:31:16 GMT 2023
    - 227.7K bytes
    - Viewed (0)
  3. cmd/site-replication-metrics.go

    	Queued InQueueMetric `json:"queued"`
    	// Proxy stats
    	Proxied ProxyMetric `json:"proxied"`
    	// replication metrics summary for each site replication peer
    	Metrics map[string]SRMetric `json:"replMetrics"`
    	// uptime of node being queried for site replication metrics
    	Uptime int64 `json:"uptime"`
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Feb 06 06:00:45 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/grafana/replication/minio-replication.json

          "keepTime": true,
          "tags": [
            "minio"
          ],
          "type": "dashboards"
        }
      ],
      "liveNow": false,
      "panels": [
        {
          "aliasColors": {
            "Replication Errors": "light-red",
            "Replication Requests": "light-green"
          },
          "bars": false,
          "dashLength": 10,
          "dashes": false,
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
    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

              },
              "exemplar": true,
              "expr": "minio_cluster_replication_link_offline_duration_seconds{job=\"$scrape_jobs\"}",
              "interval": "1m",
              "legendFormat": "{{endpoint}}",
              "refId": "A"
            }
          ],
          "title": "Replication Link Offline Duration (sec)",
          "type": "timeseries"
        }
      ],
      "refresh": "",
    Json
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 28 17:15:39 GMT 2024
    - 57.5K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

                  }
                ]
              },
              "unit": "bytes"
            },
            "overrides": [
              {
                "matcher": {
                  "id": "byName",
                  "options": "Replication Errors"
                },
                "properties": [
                  {
                    "id": "color",
                    "value": {
                      "fixedColor": "light-red",
                      "mode": "fixed"
    Json
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 28 17:15:39 GMT 2024
    - 71.1K bytes
    - Viewed (0)
  7. cmd/bucket-replication-stats.go

    		}
    	case replication.Completed:
    		if ri.OpType.IsDataReplication() {
    			rs.set(ri.Arn, ri.Size, ri.Duration, status, ri.OpType, ri.endpoint, ri.secure, ri.Err)
    		}
    	case replication.Failed:
    		if ri.OpType.IsDataReplication() && prevStatus == replication.Pending {
    			rs.set(ri.Arn, ri.Size, ri.Duration, status, ri.OpType, ri.endpoint, ri.secure, ri.Err)
    		}
    	case replication.Replica:
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  8. docs/bucket/replication/setup_3site_replication.sh

    ./mc version enable sitec/bucket/
    ./mc mb -l sitec/olockbucket
    
    echo "adding replication rule for a -> b : ${remote_arn}"
    sleep 1
    ./mc replicate add sitea/bucket/ \
    	--remote-bucket http://minio:minio123@127.0.0.1:9004/bucket \
    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync"
    sleep 1
    
    echo "adding replication rule for b -> a : ${remote_arn}"
    ./mc replicate add siteb/bucket/ \
    Shell Script
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  9. docs/bucket/replication/HEAD_bucket_replication.png

    HEAD_bucket_replication.png...
    PNG Image
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Jan 15 23:22:55 GMT 2021
    - 21.9K bytes
    - Viewed (0)
  10. cmd/bucket-replication_test.go

    				DeleteReplication:         replication.DeleteReplication{Status: replication.Enabled},
    				Filter:                    replication.Filter{},
    				ExistingObjectReplication: replication.ExistingObjectReplication{Status: replication.Enabled},
    				SourceSelectionCriteria: replication.SourceSelectionCriteria{
    					ReplicaModifications: replication.ReplicaModifications{Status: replication.Enabled},
    				},
    			},
    		},
    	},
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Sep 16 09:28:06 GMT 2023
    - 12.2K bytes
    - Viewed (0)
Back to top