summaryrefslogtreecommitdiff
path: root/readme_fieldstat_easy.md
diff options
context:
space:
mode:
authorfumingwei <[email protected]>2023-11-22 18:56:34 +0800
committer付明卫 <[email protected]>2023-11-22 11:22:33 +0000
commitd1f72eda03ba7d0139c8f51b2d8efbabe9beb1b5 (patch)
tree732ef5191fac137886c8d8f5de43d62f3d58eddb /readme_fieldstat_easy.md
parent30437a0f2756671ba658311c0f179769f2b4e5ea (diff)
bugfix:TSG-17794:support print_table print speed values.
Diffstat (limited to 'readme_fieldstat_easy.md')
-rw-r--r--readme_fieldstat_easy.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/readme_fieldstat_easy.md b/readme_fieldstat_easy.md
index 96c88e7..13bf0e3 100644
--- a/readme_fieldstat_easy.md
+++ b/readme_fieldstat_easy.md
@@ -140,7 +140,7 @@ Export the metrics of type counter in the form of a determinant.
We can use the template argument to exporter table format. The template argument include the follow functions:
functions|description|jinja2 example
---|---|---
-print_tables(groupby, columns)|Groupby specifies the tag key as the row of the table. Column specifies the field key as the column of the table.| '{{ print_tables("send_log", ["T_success_log"]) }}{{"\n"}}{{ print_tables("groupby", ["T_fail_log"]) }}'
+print_tables(groupby, columns)|Groupby specifies the tag key as the row of the table. Column specifies the field key as the column of the table. Default print speed value.| '{{ print_tables("send_log", ["T_success_log"]) }}{{"\n"}}{{ print_tables("groupby", ["T_fail_log"], False) }}'
print_counters(field_keys)| Export counter metrics specified by the field keys.|'{{ print_counters(["T_success_log"]) }}'
print_histograms(field_keys)| Export histogram metrics specified by the field keys.|'{{ print_histograms(["list_num"]) }}'
print_hlls(field_keys)| Export hyperloglog metrics specified by the field keys.| '{{ print_hlls(["external_ip"]) }}'