Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 268 for Monitoring (0.41 sec)

  1. pilot/pkg/util/informermetric/informerutil.go

    package informermetric
    
    import (
    	"sync"
    
    	"k8s.io/client-go/tools/cache"
    
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/monitoring"
    )
    
    var (
    	clusterLabel = monitoring.CreateLabel("cluster")
    
    	errorMetric = monitoring.NewSum(
    		"controller_sync_errors_total",
    		"Total number of errorMetric syncing controllers.",
    	)
    
    	mu       sync.RWMutex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. pkg/monitoring/example_sum_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package monitoring_test
    
    import "istio.io/istio/pkg/monitoring"
    
    var (
    	protocol = monitoring.CreateLabel("protocol")
    
    	requests = monitoring.NewSum(
    		"requests_total",
    		"Number of requests handled, by protocol",
    	)
    )
    
    func ExampleNewSum() {
    	// increment on every http request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1005 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pilot/pkg/model/typed_xds_cache.go

    		monitoring.WithEnabled(enableStats),
    	)
    
    	xdsCacheSize = monitoring.NewGauge(
    		"xds_cache_size",
    		"Current size of xds cache",
    		monitoring.WithEnabled(enableStats),
    	)
    
    	dependentConfigSize = monitoring.NewGauge(
    		"xds_cache_dependent_config_size",
    		"Current size of dependent configs",
    		monitoring.WithEnabled(enableStats),
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. 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)
Back to top