Home
last modified time | relevance | path

Searched refs:Gauge (Results 1 – 25 of 35) sorted by relevance

12

/external/cldr/tools/st-prom-exporter/
Dindex.js30 ok: new client.Gauge({
35 isSetup: new client.Gauge({
40 isBusted: new client.Gauge({
45 fetchTime: new client.Gauge({
50 fetchErr: new client.Gauge({
55 pages: new client.Gauge({
60 users: new client.Gauge({
65 stamp: new client.Gauge({
71 memtotal: new client.Gauge({
76 memfree: new client.Gauge({
[all …]
/external/tensorflow/tensorflow/core/lib/monitoring/
Dmobile_gauge.h53 class Gauge {
55 ~Gauge() {} in ~Gauge()
58 static Gauge* New(MetricDefArgs&&... metric_def_args) { in New()
63 return new Gauge(); in New()
74 Gauge() {} in Gauge() function
78 TF_DISALLOW_COPY_AND_ASSIGN(Gauge);
Dgauge.h132 class Gauge {
134 ~Gauge() { in ~Gauge()
153 static Gauge* New(MetricDefArgs&&... metric_def_args);
163 explicit Gauge( in Gauge() function
196 TF_DISALLOW_COPY_AND_ASSIGN(Gauge);
224 Gauge<ValueType, NumLabels>* Gauge<ValueType, NumLabels>::New( in New()
230 return new Gauge<ValueType, NumLabels>( in New()
237 GaugeCell<ValueType>* Gauge<ValueType, NumLabels>::GetCell( in GetCell()
Dgauge_test.cc24 auto* gauge_with_labels = Gauge<int64, 1>::New(
46 auto* gauge_without_labels = Gauge<int64, 0>::New(
68 auto* string_gauge = Gauge<string, 0>::New("/tensorflow/test/string_gauge",
91 Gauge<bool, 0>::New("/tensorflow/test/bool_gauge", "Gauge of bool value.");
113 auto* same_gauge = Gauge<int64, 1>::New("/tensorflow/test/gauge_with_labels", in TEST()
Dcollection_registry_test.cc170 TEST(CollectMetricsTest, Gauge) { in TEST() argument
172 std::unique_ptr<Gauge<string, 2>>(Gauge<string, 2>::New( in TEST()
175 auto inteter_gauge_without_labels = std::unique_ptr<Gauge<int64, 0>>( in TEST()
176 Gauge<int64, 0>::New("/tensorflow/test/integer_gauge_without_labels", in TEST()
/external/opencensus-java/contrib/dropwizard/src/test/java/io/opencensus/contrib/dropwizard/
DDropWizardMetricsTest.java23 import com.codahale.metrics.Gauge;
67 Gauge<Integer> integerGauge = in collect()
68 new Gauge<Integer>() { in collect()
76 Gauge<Double> doubleGauge = in collect()
77 new Gauge<Double>() { in collect()
85 Gauge<Long> longGauge = in collect()
86 new Gauge<Long>() { in collect()
94 Gauge<Float> floatGauge = in collect()
95 new Gauge<Float>() { in collect()
103 Gauge<Boolean> boolGauge = in collect()
[all …]
/external/autotest/site_utils/stats/
Dmysql_stats.py130 metrics.Gauge(metric_name).set(GetStatus(conn, status))
135 metrics.Gauge('chromeos/autotest/afe_db/buffer_pool_pages').set(
138 metrics.Gauge('chromeos/autotest/afe_db/buffer_pool_pages').set(
/external/python/pyasn1-modules/pyasn1_modules/
Drfc1155.py58 class Gauge(univ.Integer): class
86 namedtype.NamedType('gauge', Gauge()),
/external/autotest/site_utils/
Dlabel_cleaner.py188 metrics.Gauge(_METRICS_PREFIX + '/total_labels_count').set(
200 metrics.Gauge(_METRICS_PREFIX + '/total_labels_count').set(
210 metrics.Gauge(_METRICS_PREFIX + '/used_labels_count').set(
Dcheck_hung_proc.py50 metrics.Gauge('chromeos/autotest/hung_processes').set(
Dcount_jobs.py43 metrics.Gauge('chromeos/autotest/experimental/jobs_rate/afe_daily_count').set(count)
/external/tensorflow/tensorflow/compiler/tf2xla/
Dmlir_bridge_pass.cc30 auto* mlir_bridge_gauge_v1 = monitoring::Gauge<bool, 0>::New(
33 auto* mlir_bridge_gauge_v2 = monitoring::Gauge<bool, 0>::New(
/external/tensorflow/tensorflow/c/eager/
Dtfe_monitoring_internal.h70 tensorflow::monitoring::Gauge<ValueType, NumLabels>::New( in TFE_MonitoringGauge()
74 std::unique_ptr<tensorflow::monitoring::Gauge<ValueType, NumLabels>> gauge;
/external/opencensus-java/contrib/dropwizard/src/main/java/io/opencensus/contrib/dropwizard/
DDropWizardMetrics.java20 import com.codahale.metrics.Gauge;
84 private @Nullable Metric collectGauge(String dropwizardName, Gauge gauge) { in collectGauge()
247 for (Entry<String, Gauge> gaugeEntry : metricRegistry.getGauges().entrySet()) { in getMetrics()
/external/grpc-grpc/src/ruby/stress/
Dmetrics_server.rb18 class Gauge class
Dstress_client.rb23 class QpsGauge < Gauge
/external/tensorflow/tensorflow/core/common_runtime/
Dsession.cc28 auto* session_created = monitoring::Gauge<bool, 0>::New(
/external/grpc-grpc/src/proto/grpc/testing/
Dmetrics.proto18 // Currently, 'Gauge' (i.e a metric that represents the measured value of
/external/rust/crates/grpcio-sys/grpc/src/proto/grpc/testing/
Dmetrics.proto18 // Currently, 'Gauge' (i.e a metric that represents the measured value of
/external/grpc-grpc-java/interop-testing/src/main/proto/grpc/testing/
Dmetrics.proto17 // Currently, 'Gauge' (i.e a metric that represents the measured value of
/external/tensorflow/tensorflow/core/kernels/batching_util/
Dbatch_resource_base.cc85 static auto* cell = monitoring::Gauge<int64, 2>::New( in RecordBatchParamBatchTimeoutMicros()
95 static auto* cell = monitoring::Gauge<int64, 2>::New( in RecordBatchParamMaxBatchSize()
104 static auto* cell = monitoring::Gauge<int64, 2>::New( in RecordBatchParamMaxEnqueuedBatches()
114 static auto* cell = monitoring::Gauge<string, 2>::New( in RecordBatchParamAllowedBatchSizes()
/external/tensorflow/tensorflow/core/distributed_runtime/
Dworker_session.cc25 monitoring::Gauge<bool, 0>::New("/tensorflow/core/worker_session_created",
/external/opencensus-java/contrib/dropwizard/
DREADME.md78 Given a DropWizard Gauge with name `line_requests`, the following values are reported:
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Dmark_ops_for_outside_compilation.cc47 tensorflow::monitoring::Gauge<bool, 0>::New(
/external/tensorflow/tensorflow/core/data/service/
Dworker_impl.cc49 monitoring::Gauge<bool, 0>::New("/tensorflow/data/service/created",

12