Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 123 for heatmap (0.17 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. guava/src/com/google/common/collect/CollectSpliterators.java

          Spliterator<OutElementT> flatMap(
              Spliterator<InElementT> fromSpliterator,
              Function<? super InElementT, @Nullable Spliterator<OutElementT>> function,
              int topCharacteristics,
              long topSize) {
        checkArgument(
            (topCharacteristics & Spliterator.SUBSIZED) == 0,
            "flatMap does not support SUBSIZED characteristic");
        checkArgument(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. pkg/spiffe/spiffe_test.go

    				certMap[trustDomain] = []*x509.Certificate{}
    				for _, certStr := range certStrs {
    					block, _ := pem.Decode([]byte(certStr))
    					if block == nil {
    						t.Fatalf("Can't decode the root cert.")
    					}
    					rootCert, err := x509.ParseCertificate(block.Bytes)
    					if err != nil {
    						t.Fatalf("Failed to parse certificate: " + err.Error())
    					}
    					certMap[trustDomain] = append(certMap[trustDomain], rootCert)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluationSchema/SchemaComponents.kt

            get() = analysisSchemaComponents.flatMap { it.typeDiscovery() }
    
        override val propertyExtractors: List<PropertyExtractor>
            get() = analysisSchemaComponents.flatMap { it.propertyExtractors() }
    
        override val functionExtractors: List<FunctionExtractor>
            get() = analysisSchemaComponents.flatMap { it.functionExtractors() }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. build-logic-settings/build-environment/src/main/kotlin/gradlebuild.build-environment.settings.gradle.kts

            }
            val buildEnvironmentExtension = extensions.create("buildEnvironment", BuildEnvironmentExtension::class)
            buildEnvironmentExtension.gitCommitId = service.flatMap { it.gitCommitId }
            buildEnvironmentExtension.gitBranch = service.flatMap { it.gitBranch }
            buildEnvironmentExtension.repoRoot = this@with
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 08:48:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top