Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 161 for MONITOR (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/factory.go

    		return newETCD3ProberMonitor(c)
    	default:
    		return nil, fmt.Errorf("unknown storage type: %s", c.Type)
    	}
    }
    
    func CreateMonitor(c storagebackend.Config) (metrics.Monitor, error) {
    	switch c.Type {
    	case storagebackend.StorageTypeETCD2:
    		return nil, fmt.Errorf("%s is no longer a supported storage backend", c.Type)
    	case storagebackend.StorageTypeUnset, storagebackend.StorageTypeETCD3:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/README.md

    # How to monitor MinIO server with Prometheus? [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 12 15:49:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/grafana/README.md

    # How to monitor MinIO server with Grafana [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    [Grafana](https://grafana.com/) allows you to query, visualize, alert on and understand your metrics no matter where they are stored. Create, explore, and share dashboards with your team and foster a data driven culture.
    
    ## Prerequisites
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/eventspy/EventSpy.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.eventspy;
    
    import java.util.Map;
    
    /**
     * A core extension to monitor Maven's execution. Typically, such an extension gets loaded into Maven by specifying the
     * property {@code maven.ext.class.path} on the command line. As soon as dependency injection is set up, Maven
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/monitor/metrics.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // metrics packages contains metrics which are exposed from the HPA controller.
    package monitor
    
    import (
    	"sync"
    
    	"k8s.io/component-base/metrics"
    	"k8s.io/component-base/metrics/legacyregistry"
    )
    
    const (
    	// hpaControllerSubsystem - subsystem name used by HPA controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:47:24 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. hack/verify-prometheus-imports.sh

    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    # See: https://github.com/kubernetes/kubernetes/issues/89267
    allowed_prometheus_importers=(
      ./cluster/images/etcd-version-monitor/etcd-version-monitor.go
      ./staging/src/k8s.io/component-base/metrics/prometheusextension/timing_histogram.go
      ./staging/src/k8s.io/component-base/metrics/prometheusextension/timing_histogram_test.go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 04:03:51 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. pilot/pkg/config/monitor/monitor_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package monitor
    
    import (
    	"errors"
    	"testing"
    	"time"
    
    	. "github.com/onsi/gomega"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/config/memory"
    	"istio.io/istio/pkg/config"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationIntegrityCheckIntegTest.groovy

    2 artifacts failed verification:
      - monitor-1.0.jar (org:monitor:1.0) from repository maven
      - monitor-1.0.pom (org:monitor:1.0) from repository maven"""))
    
            when:
            executer.requireIsolatedDaemons()
            fails "resolveCompileClasspath"
    
            then:
            failure.assertThatCause(containsText("""
    2 artifacts failed verification:
      - monitor-1.0.jar (org:monitor:1.0) from repository maven
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    	return nil
    }
    
    func monitorGetter(factory serverstorage.StorageFactory) func() (monitors []metrics.Monitor, err error) {
    	return func() (monitors []metrics.Monitor, err error) {
    		defer func() {
    			if err != nil {
    				for _, m := range monitors {
    					m.Close()
    				}
    			}
    		}()
    
    		var m metrics.Monitor
    		for _, cfg := range factory.Configs() {
    			m, err = storagefactory.CreateMonitor(cfg)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. pkg/util/iptables/testing/fake.go

    	}
    
    	for i := range dump.Tables {
    		err = f.restoreTable(dump, &dump.Tables[i], flush, counters)
    		if err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    // Monitor is part of iptables.Interface
    func (f *FakeIPTables) Monitor(canary iptables.Chain, tables []iptables.Table, reloadFunc func(), interval time.Duration, stopCh <-chan struct{}) {
    }
    
    // HasRandomFully is part of iptables.Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top