Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 122 for Monitoring (0.39 sec)

  1. pkg/collateral/predicate.go

    type SelectMetricFn func(monitoring.MetricDefinition) bool
    
    // DefaultSelectEnvFn is used to select all environment variables.
    func DefaultSelectEnvFn(_ env.Var) bool {
    	return true
    }
    
    // DefaultSelectMetricFn is used to select all metrics.
    func DefaultSelectMetricFn(_ monitoring.MetricDefinition) bool {
    	return true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. samples/addons/README.md

    > See the [Cluster Monitoring](https://coreos.com/operators/prometheus/docs/latest/user-guides/cluster-monitoring.html) documentation for configuring this.
    >
    > **Warning**
    >
    > When the example `PodMonitor` is used with OpenShift Monitoring, it must be created in all namespaces where istio-proxies exist.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/test_matchers_test.cc

    #include "xla/service/hlo.pb.h"
    #include "tensorflow/core/lib/monitoring/cell_reader.h"
    #include "tensorflow/core/lib/monitoring/counter.h"
    #include "tsl/platform/statusor.h"
    
    namespace {
    using ::tensorflow::monitoring::testing::CellReader;
    using ::testing::Not;
    
    constexpr char kMetric[] = "/tensorflow/metric";
    auto* counter =
        tensorflow::monitoring::Counter<1>::New(kMetric, "description", "status");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization.cc

    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    #include "tensorflow/core/lib/monitoring/counter.h"
    #include "tensorflow/core/platform/errors.h"
    
    namespace mlir {
    namespace mhlo {
    
    namespace {
    
    #define GEN_PASS_DEF_VERIFYTFXLALEGALIZATION
    #include "tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf_passes.h.inc"
    
    auto* mlir_failed_legalization_op_count =
        tensorflow::monitoring::Counter<1>::New(
            "/tensorflow/core/tf2xla/"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. pkg/monitoring/doc.go

    // limitations under the License.
    
    // Package monitoring provides a common instrumentation library for Istio components.
    // Use of this library enables collateral generation for collected metrics, as well as
    // a consistent developer experience across Istio codebases.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 844 bytes
    - Viewed (0)
  6. pkg/monitoring/units.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package monitoring
    
    // Unit encodes the standard name for describing the quantity
    // measured by a Metric (if applicable).
    type Unit string
    
    // Predefined units for use with the monitoring package.
    const (
    	None         Unit = "1"
    	Bytes        Unit = "By"
    	Seconds      Unit = "s"
    	Milliseconds Unit = "ms"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 901 bytes
    - Viewed (0)
  7. tools/golangci-override.yaml

            files:
              - $all
              - "!**/pkg/monitoring/**"
              - "!**/pkg/tracing/**"
            deny:
              - pkg: go.opentelemetry.io/otel
                desc: "do not use OpenTelemetry directly; use pkg/monitoring"
              - pkg: go.opentelemetry.io/otel/metric
                desc: "do not use OpenTelemetry directly; use pkg/monitoring"
          DenyProtobufV1:
            files:
              - $all
            deny:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. manifests/charts/istio-operator/values.yaml

      # revision for the operator resources
      revision: ""
    
      # The number of old ReplicaSets to retain in operator deployment
      deploymentHistory: 10
    
      # Operator resource defaults
      operator:
        monitoring:
          host: 127.0.0.1
          port: 15014
        resources:
          limits:
            cpu: 200m
            memory: 256Mi
          requests:
            cpu: 50m
            memory: 128Mi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/input_lowering_metrics_pass.cc

    #include "tensorflow/core/lib/monitoring/counter.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    namespace {
    
    using mlir::Operation;
    using mlir::WalkResult;
    
    #define GEN_PASS_DEF_INPUTLOWERINGMETRICSPASS
    #include "tensorflow/compiler/mlir/tf2xla/internal/passes/lowering_passes.h.inc"
    
    auto* dynamism_op_counter = tensorflow::monitoring::Counter<1>::New(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 08:55:35 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. helm/minio/templates/servicemonitor.yaml

          - {{ .Release.Namespace | quote }}
      selector:
        matchLabels:
          app: {{ include "minio.name" . }}
          release: {{ .Release.Name }}
          monitoring: "true"
    {{- end }}
    {{- if .Values.metrics.serviceMonitor.enabled }}
    ---
    apiVersion: monitoring.coreos.com/v1
    kind: Probe
    metadata:
      name: {{ template "minio.fullname" . }}-cluster
      {{- if .Values.metrics.serviceMonitor.namespace }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top