Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 428 for heatmap (0.12 sec)

  1. manifests/addons/dashboards/lib/panels.libsonnet

            overrideSeries('wds', 'Workloads'),
          ]),
      },
    
      heatmap: {
        local heatmap = g.panel.heatmap,
        local options = heatmap.options,
    
        base(title, targets, desc=''):
          heatmap.new(title)
          + heatmap.queryOptions.withTargets(targets)
          + heatmap.queryOptions.withInterval('1m')
          + options.calculation.xBuckets.withMode('size')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/lib/queries.libsonnet

                sum(rate(pilot_xds_push_time_bucket{}[1m])) by (le)
              |||
            ) + q.withFormat('heatmap'),
    
          pushSize:
            self.query(
              '{{le}}',
              |||
                sum(rate(pilot_xds_config_size_bytes_bucket{}[1m])) by (le)
              |||
            ) + q.withFormat('heatmap'),
    
          pilotEvents: [
            self.query(
              '{{event}} {{type}}',
              |||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/pilot.libsonnet

            |||
          ),
          panels.heatmap.base(
            'Push Time', queries.pushTime, |||
              Count of active and pending proxies managed by each instance.
              Pending is expected to converge to zero.
            |||
          ),
          panels.heatmap.bytes(
            'Push Size', queries.pushSize, |||
              Size of each xDS push.
            |||
          ),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/pilot-dashboard.gen.json

                   },
                   "expr": "sum(rate(pilot_xds_push_time_bucket{}[1m])) by (le)",
                   "format": "heatmap",
                   "legendFormat": "{{le}}"
                }
             ],
             "title": "Push Time",
             "type": "heatmap"
          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/lib/output.json

                         "legendFormat": "{{cluster}} - {{namespace}}\n"
                      }
                   ],
                   "title": "Workqueue Waiting Duration Over Time",
                   "type": "heatmap"
                },
                {
                   "datasource": {
                      "type": "datasource",
                      "uid": "-- Mixed --"
                   },
                   "fieldConfig": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. samples/addons/grafana.yaml

    l","steps":128},"yAxis":{"decimals":0,"unit":"s"}},"pluginVersion":"v11.0.0","targets":[{"datasource":{"type":"prometheus","uid":"$datasource"},"expr":"sum(rate(pilot_xds_push_time_bucket{}[1m])) by (le)","format":"heatmap","legendFormat":"{{le}}"}],"title":"Push Time","type":"heatmap"},{"datasource":{"type":"datasource","uid":"-- Mixed --"},"description":"Size of each xDS push.\n","gridPos":{"h":10,"w":8,"x":16,"y":14},"id":14,"interval":"1m","options":{"calculation":{"xBuckets":{"mode":"size",...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/beans/util/BeanMap.java

    import java.util.LinkedHashMap;
    
    import org.codelibs.core.exception.IllegalKeyOfBeanMapException;
    
    /**
     * Stringがキーで、存在しないキーにアクセスする(get)と例外を投げるマップです。
     *
     * @author higa
     */
    public class BeanMap extends LinkedHashMap<String, Object> {
    
        private static final long serialVersionUID = 1;
    
        @Override
        public Object get(final Object key) {
            if (!containsKey(key)) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/SynchronizedNavigableMapTest.java

        SortedMap<String, Integer> headMap = map.headMap("a");
        assertTrue(headMap instanceof SynchronizedSortedMap);
        assertSame(mutex, ((SynchronizedSortedMap<String, Integer>) headMap).mutex);
      }
    
      public void testHeadMap_K_B() {
        NavigableMap<String, Integer> map = create();
        NavigableMap<String, Integer> headMap = map.headMap("a", true);
        assertTrue(headMap instanceof SynchronizedNavigableMap);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/testers/SortedMapNavigationTester.java

      public void testLast() {
        assertEquals(c.getKey(), navigableMap.lastKey());
      }
    
      @CollectionSize.Require(absent = ZERO)
      public void testHeadMapExclusive() {
        assertFalse(navigableMap.headMap(a.getKey()).containsKey(a.getKey()));
      }
    
      @CollectionSize.Require(absent = ZERO)
      public void testTailMapInclusive() {
        assertTrue(navigableMap.tailMap(a.getKey()).containsKey(a.getKey()));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/testers/SortedMapNavigationTester.java

      public void testLast() {
        assertEquals(c.getKey(), navigableMap.lastKey());
      }
    
      @CollectionSize.Require(absent = ZERO)
      public void testHeadMapExclusive() {
        assertFalse(navigableMap.headMap(a.getKey()).containsKey(a.getKey()));
      }
    
      @CollectionSize.Require(absent = ZERO)
      public void testTailMapInclusive() {
        assertTrue(navigableMap.tailMap(a.getKey()).containsKey(a.getKey()));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top