Home
last modified time | relevance | path

Searched refs:monitoring (Results 1 – 25 of 277) sorted by relevance

12345678910>>...12

/external/tensorflow/tensorflow/compiler/xrt/
Dxrt_metrics.cc44 monitoring::UnitOfMeasure unit_of_measure) { in SetUnitOfMeasure()
46 case monitoring::UnitOfMeasure::kNumber: in SetUnitOfMeasure()
49 case monitoring::UnitOfMeasure::kTime: in SetUnitOfMeasure()
52 case monitoring::UnitOfMeasure::kBytes: in SetUnitOfMeasure()
59 const monitoring::PointSet& point_set) { in AddMetrics()
63 if (point->value_type == monitoring::ValueType::kPercentiles) { in AddMetrics()
80 } else if (point->value_type == monitoring::ValueType::kInt64) { in AddMetrics()
92 monitoring::PercentileSamplerCell* GetAllocateCell() { in GetAllocateCell()
93 static monitoring::PercentileSamplerCell* cell = in GetAllocateCell()
94 monitoring::PercentileSampler<0>::New( in GetAllocateCell()
[all …]
Dxrt_metrics.h30 monitoring::PercentileSamplerCell* GetAllocateCell();
31 monitoring::PercentileSamplerCell* GetAllocateUninitializedCell();
32 monitoring::PercentileSamplerCell* GetAllocateFromTensorCell();
33 monitoring::PercentileSamplerCell* GetSubTupleCell();
34 monitoring::PercentileSamplerCell* GetMakeTupleCell();
35 monitoring::PercentileSamplerCell* GetReadLiteralCell();
36 monitoring::PercentileSamplerCell* GetReadToTensorCell();
37 monitoring::PercentileSamplerCell* GetWriteLiteralCell();
38 monitoring::PercentileSamplerCell* GetReleaseAllocationCell();
39 monitoring::PercentileSamplerCell* GetReleaseAllAllocationsCell();
[all …]
/external/tensorflow/tensorflow/core/framework/
Dmetrics.cc24 auto* graph_runs = monitoring::Counter<0>::New(
29 auto* graph_run_time_usecs = monitoring::Counter<0>::New(
34 monitoring::Counter<2>::New("/tensorflow/core/graph_optimization_usecs",
39 auto* graph_run_time_usecs_histogram = monitoring::Sampler<0>::New(
43 {monitoring::Buckets::Exponential(1000, 2, 20)});
45 auto* graph_pending_queue_length_histogram = monitoring::Sampler<0>::New(
49 {monitoring::Buckets::Exponential(1, 1.5, 30)});
51 auto* graph_run_input_tensor_bytes = monitoring::Sampler<0>::New(
55 {monitoring::Buckets::Exponential(1, 4, 14)});
57 auto* graph_run_output_tensor_bytes = monitoring::Sampler<0>::New(
[all …]
Dmetrics.h34 monitoring::CounterCell* GetTFDataBytesConsumedCounter(const string& name);
40 monitoring::CounterCell* GetTFDataBytesProducedCounter(const string& name);
48 monitoring::CounterCell* GetTFDataBytesReadCounter(const string& name);
54 monitoring::CounterCell* GetTFDataElementsCounter(const string& name);
/external/tensorflow/tensorflow/python/eager/
Dmonitoring_test.py23 from tensorflow.python.eager import monitoring
32 counter = monitoring.Counter('test/counter', 'test counter')
39 counter1 = monitoring.Counter('test/counter1', 'test counter', 'label1')
42 counter2 = monitoring.Counter('test/counter2', 'test counter', 'label1',
48 …counter1 = monitoring.Counter('test/same_counter', 'test counter') # pylint: disable=unused-varia…
50 …counter2 = monitoring.Counter('test/same_counter', 'test counter') # pylint: disable=unused-varia…
53 gauge = monitoring.IntGauge('test/gauge', 'test gauge')
59 gauge1 = monitoring.IntGauge('test/gauge1', 'test gauge1', 'label1')
64 gauge = monitoring.StringGauge('test/gauge', 'test gauge')
70 gauge1 = monitoring.StringGauge('test/gauge1', 'test gauge1', 'label1')
[all …]
Dpywrap_tensor_conversion.cc26 auto* scalar_cache_hits = tensorflow::monitoring::Counter<0>::New(
29 auto* scalar_cache_misses = tensorflow::monitoring::Counter<0>::New(
/external/caliper/lib/
Djava-allocation-instrumenter-2.0.jar ... com/ com/google/ com/google/monitoring/ com/google/monitoring/runtime/ com ...
/external/tensorflow/tensorflow/c/eager/
Dtfe_monitoring_internal.h29 tensorflow::monitoring::CounterCell cell;
37 counter = absl::WrapUnique(tensorflow::monitoring::Counter<NumLabels>::New( in TFE_MonitoringCounter()
41 std::unique_ptr<tensorflow::monitoring::Counter<NumLabels>> counter;
55 tensorflow::monitoring::GaugeCell<tensorflow::int64> cell;
58 tensorflow::monitoring::GaugeCell<tensorflow::string> cell;
61 tensorflow::monitoring::GaugeCell<bool> cell;
70 tensorflow::monitoring::Gauge<ValueType, NumLabels>::New( in TFE_MonitoringGauge()
74 std::unique_ptr<tensorflow::monitoring::Gauge<ValueType, NumLabels>> gauge;
109 std::function<std::unique_ptr<tensorflow::monitoring::Buckets>(void)> in TFE_MonitoringBuckets()
114 std::function<std::unique_ptr<tensorflow::monitoring::Buckets>(void)>
[all …]
/external/tensorflow/tensorflow/core/profiler/utils/
Dtfstreamz_utils.cc43 const monitoring::Point& point) { in ConstructXStatName()
51 [](std::string* out, const monitoring::Point::Label& label) { in ConstructXStatName()
56 tfstreamz::Percentiles ToProto(const monitoring::Percentiles& percentiles) { in ToProto()
105 case monitoring::ValueType::kInt64: in SerializeToXPlane()
108 case monitoring::ValueType::kBool: in SerializeToXPlane()
111 case monitoring::ValueType::kString: in SerializeToXPlane()
115 case monitoring::ValueType::kHistogram: in SerializeToXPlane()
118 case monitoring::ValueType::kPercentiles: in SerializeToXPlane()
/external/tensorflow/tensorflow/python/distribute/coordinator/
Dmetric_utils.py24 from tensorflow.python.eager import monitoring
37 time_buckets = monitoring.ExponentialBuckets(0.001, 10, 6)
39 function_tracing_sampler = monitoring.Sampler(
43 closure_execution_sampler = monitoring.Sampler(
48 remote_value_fetch_sampler = monitoring.Sampler(
/external/dagger2/javatests/dagger/functional/producers/monitoring/
DThreadModule.java17 package dagger.functional.producers.monitoring;
20 import dagger.functional.producers.monitoring.ThreadQualifiers.Deferred;
21 import dagger.functional.producers.monitoring.ThreadQualifiers.EntryPoint;
22 import dagger.functional.producers.monitoring.ThreadQualifiers.Required;
DServingModule.java17 package dagger.functional.producers.monitoring;
20 import dagger.functional.producers.monitoring.StubModule.ForServer1;
21 import dagger.functional.producers.monitoring.StubModule.ForServer2;
DMonitoringModule.java17 package dagger.functional.producers.monitoring;
22 import dagger.producers.monitoring.ProductionComponentMonitor;
DThreadMonitoredComponent.java17 package dagger.functional.producers.monitoring;
21 import dagger.functional.producers.monitoring.ThreadQualifiers.EntryPoint;
/external/llvm-project/libcxx/utils/docker/debian9/buildbot/
Dinstall-gcloud-agents.sh5 curl -sSO https://dl.google.com/cloudagents/install-monitoring-agent.sh
6 sudo bash install-monitoring-agent.sh
7 rm install-monitoring-agent.sh
Drun_buildbot.sh16 curl -sSO https://dl.google.com/cloudagents/install-monitoring-agent.sh
17 sudo bash install-monitoring-agent.sh
18 rm install-monitoring-agent.sh
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.__internal__.monitoring.-bool-gauge.pbtxt1 path: "tensorflow.__internal__.monitoring.BoolGauge"
3 is_instance: "<class \'tensorflow.python.eager.monitoring.BoolGauge\'>"
4 is_instance: "<class \'tensorflow.python.eager.monitoring.Metric\'>"
/external/tensorflow/third_party/googleapis/
DBUILD21 "@com_google_googleapis//google/monitoring/v3:monitoring_cc_grpc",
29 "@com_google_googleapis//google/monitoring/v3:monitoring_cc_proto_headers_only",
37 "@com_google_googleapis//google/monitoring/v3:monitoring_cc_proto",
/external/dagger2/java/dagger/producers/internal/
DAbstractProducesMethodProducer.java24 import dagger.producers.monitoring.ProducerMonitor;
25 import dagger.producers.monitoring.ProducerToken;
26 import dagger.producers.monitoring.ProductionComponentMonitor;
/external/opencensus-java/exporters/stats/stackdriver/
DREADME.md4 Stackdriver Monitoring. [Stackdriver Monitoring][stackdriver-monitoring] provides visibility into
15 In order to be able to push your stats to [Stackdriver Monitoring][stackdriver-monitoring], you mus…
78 …r monitored resource with a project_id label](https://cloud.google.com/monitoring/api/resources#ta…
109 Documentation](https://cloud.google.com/monitoring/custom-metrics/creating-metrics#which-resource).
110 …monitored resources available on [Stackdriver](https://cloud.google.com/monitoring/api/resources),
111 only [a small subset of them](https://cloud.google.com/monitoring/custom-metrics/creating-metrics#w…
148 [not free](https://cloud.google.com/stackdriver/pricing_v2#monitoring-costs).
171 [stackdriver-monitoring]: https://cloud.google.com/monitoring/
/external/opencensus-java/exporters/stats/stackdriver/src/main/java/io/opencensus/exporter/stats/stackdriver/
DStackdriverExporterWorker.java22 import com.google.cloud.monitoring.v3.MetricServiceClient;
26 import com.google.monitoring.v3.CreateMetricDescriptorRequest;
27 import com.google.monitoring.v3.CreateTimeSeriesRequest;
28 import com.google.monitoring.v3.ProjectName;
29 import com.google.monitoring.v3.TimeSeries;
/external/tensorflow/tensorflow/core/kernels/batching_util/
Dbatch_resource_base.cc35 static auto* cell = tensorflow::monitoring::PercentileSampler<3>::New( in RecordPaddingSize()
41 /*max_samples=*/1024, tensorflow::monitoring::UnitOfMeasure::kNumber); in RecordPaddingSize()
48 static auto* cell = tensorflow::monitoring::PercentileSampler<2>::New( in RecordInputBatchSize()
54 /*max_samples=*/1024, tensorflow::monitoring::UnitOfMeasure::kNumber); in RecordInputBatchSize()
60 static auto* cell = tensorflow::monitoring::PercentileSampler<2>::New( in RecordProcessedBatchSize()
66 /*max_samples=*/1024, tensorflow::monitoring::UnitOfMeasure::kNumber); in RecordProcessedBatchSize()
72 static auto* cell = monitoring::PercentileSampler<2>::New( in RecordBatchDelayUs()
78 /*max_samples=*/1024, monitoring::UnitOfMeasure::kTime); in RecordBatchDelayUs()
85 static auto* cell = monitoring::Gauge<int64, 2>::New( in RecordBatchParamBatchTimeoutMicros()
95 static auto* cell = monitoring::Gauge<int64, 2>::New( in RecordBatchParamMaxBatchSize()
[all …]
/external/tensorflow/tensorflow/core/kernels/data/experimental/
Dstats_aggregator_ops.cc41 static std::unordered_map<string, monitoring::Counter<1>*>* get_counters_map() { in get_counters_map()
42 static std::unordered_map<string, monitoring::Counter<1>*>* counters_map = in get_counters_map()
43 new std::unordered_map<string, monitoring::Counter<1>*>; in get_counters_map()
97 monitoring::Counter<1>::New( in IncrementCounter()
168 name, monitoring::Counter<1>::New( in IncrementCounter()
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
DAggregateAllocationsRecorder.java20 import com.google.monitoring.runtime.instrumentation.Sampler;
46 com.google.monitoring.runtime.instrumentation.AllocationRecorder.addSampler(sampler); in AggregateAllocationsRecorder()
/external/tensorflow/tensorflow/python/keras/estimator/
D__init__.py21 from tensorflow.python.eager import monitoring
28 _model_to_estimator_usage_gauge = monitoring.BoolGauge(

12345678910>>...12