/Zephyr-latest/subsys/net/lib/prometheus/ |
D | summary.c | 17 int prometheus_summary_observe(struct prometheus_summary *summary, double value) in prometheus_summary_observe() argument 19 if (!summary) { in prometheus_summary_observe() 24 summary->count++; in prometheus_summary_observe() 27 summary->sum += value; in prometheus_summary_observe() 32 int prometheus_summary_observe_set(struct prometheus_summary *summary, in prometheus_summary_observe_set() argument 38 if (summary == NULL) { in prometheus_summary_observe_set() 42 if (value == summary->sum && count == summary->count) { in prometheus_summary_observe_set() 46 old_count = summary->count; in prometheus_summary_observe_set() 52 summary->count += (count - old_count); in prometheus_summary_observe_set() 54 old_sum = summary->sum; in prometheus_summary_observe_set() [all …]
|
D | formatter.c | 197 const struct prometheus_summary *summary = in prometheus_format_one_metric() local 200 LOG_DBG("summary->count: %lu", summary->count); in prometheus_format_one_metric() 202 for (int i = 0; i < summary->num_quantiles; ++i) { in prometheus_format_one_metric() 206 summary->quantiles[i].quantile, in prometheus_format_one_metric() 207 summary->quantiles[i].value); in prometheus_format_one_metric() 215 "%s_sum %f\n", metric->name, summary->sum); in prometheus_format_one_metric() 223 summary->count); in prometheus_format_one_metric()
|
D | CMakeLists.txt | 12 summary.c
|
/Zephyr-latest/tests/benchmarks/sched_queues/src/ |
D | utils.h | 35 #define PRINT_F(summary, cycles, nsec) \ argument 42 printk(FORMAT_STR, summary, cycle_str, nsec_str); \ 45 #define PRINT_STATS(summary, value) \ argument 46 PRINT_F(summary, value, \ 49 #define PRINT_STATS_AVG(summary, value, counter) \ argument 50 PRINT_F(summary, value / counter, \
|
/Zephyr-latest/tests/benchmarks/latency_measure/src/ |
D | utils.h | 74 #define PRINT_F(summary, cycles, nsec, error, notes) \ argument 86 printk(FORMAT_STR, summary, cycle_str, nsec_str, notes); \ 89 #define PRINT_STATS(summary, value, error, notes) \ argument 90 PRINT_F(summary, value, \ 94 #define PRINT_STATS_AVG(summary, value, counter, error, notes) \ argument 95 PRINT_F(summary, value / counter, \
|
D | thread_switch_yield.c | 100 char summary[120]; in thread_switch_yield_common() local 138 snprintf(summary, sizeof(summary), in thread_switch_yield_common() 141 PRINT_STATS_AVG(summary, (uint32_t)sum, num_iterations, 0, ""); in thread_switch_yield_common()
|
/Zephyr-latest/tests/benchmarks/wait_queues/src/ |
D | utils.h | 33 #define PRINT_F(summary, cycles, nsec) \ argument 40 printk(FORMAT_STR, summary, cycle_str, nsec_str); \ 43 #define PRINT_STATS_AVG(summary, value, counter) \ argument 44 PRINT_F(summary, value / counter, \
|
/Zephyr-latest/scripts/checkpatch/ |
D | maintainer-checkpatch.bash | 36 declare summary=n 73 s) summary=y ;; 97 if [ ${summary} = y ]; then
|
D | do_checkpatch.sh | 16 …${ZEPHYR_BASE}/scripts/checkpatch.pl --mailback --no-tree -f --emacs --summary-file --show-types -…
|
/Zephyr-latest/include/zephyr/net/prometheus/ |
D | summary.h | 110 int prometheus_summary_observe(struct prometheus_summary *summary, double value); 123 int prometheus_summary_observe_set(struct prometheus_summary *summary,
|
/Zephyr-latest/cmake/sca/eclair/ |
D | sca_options.cmake | 19 option(ECLAIR_SUMMARY_TXT "Plain textual summary format" OFF) 20 option(ECLAIR_SUMMARY_DOC "DOC summary format" OFF) 21 option(ECLAIR_SUMMARY_ODT "ODT summary format" OFF)
|
/Zephyr-latest/tests/ztest/summary/ |
D | CMakeLists.txt | 7 project(summary) project
|
/Zephyr-latest/tests/benchmarks/wait_queues/ |
D | README.rst | 25 summary statistics as records to allow Twister parse the log and save that data 28 the summary statistics will be parsed as data records.
|
D | Kconfig | 28 Log summary statistics as records to pass results
|
/Zephyr-latest/tests/benchmarks/sched_queues/ |
D | README.rst | 27 summary statistics as records to allow Twister parse the log and save that data 30 the summary statistics will be parsed as data records.
|
D | Kconfig | 28 Log summary statistics as records to pass results
|
/Zephyr-latest/subsys/net/ip/ |
D | net_stats.c | 534 struct prometheus_summary *summary = in net_stats_prometheus_scrape() local 537 if (summary->user_data == NULL) { in net_stats_prometheus_scrape() 545 (struct net_stats_tx_time *)summary->user_data; in net_stats_prometheus_scrape() 548 summary, in net_stats_prometheus_scrape() 555 (struct net_stats_rx_time *)summary->user_data; in net_stats_prometheus_scrape() 558 summary, in net_stats_prometheus_scrape()
|
/Zephyr-latest/ |
D | .checkpatch.conf | 2 --summary-file
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | twister_main.py | 213 runner.results.summary() 215 report.summary(runner.results, options.disable_unrecognized_section_test, duration) 225 hwm.summary(tplan.selected_platforms)
|
/Zephyr-latest/doc/_doxygen/ |
D | mainpage.md | 9 information about the project and becoming a member, and this [summary
|
/Zephyr-latest/subsys/testsuite/ztest/ |
D | Kconfig | 189 bool "Display test summary" 192 This option controls output of a test summary. 202 bool "Verbose test summary" 205 This option controls whether suite summary is shown verbosely or
|
/Zephyr-latest/samples/tfm_integration/tfm_regression_test/ |
D | README.rst | 63 *** Secure test suites summary *** 106 *** Non-secure test suites summary ***
|
/Zephyr-latest/.github/ISSUE_TEMPLATE/ |
D | 003_rfc-proposal.md | 24 A brief summary of the proposed change - the 10,000 ft view on what it will
|
/Zephyr-latest/tests/benchmarks/posix/threads/ |
D | README.rst | 26 To observe periodic statistics on a per-thread basis in addition to the summary of statistics
|
/Zephyr-latest/samples/modules/tflite-micro/magic_wand/train/ |
D | train.py | 42 print(model.summary())
|