MCPcopy Create free account
hub / github.com/apache/brpc / DumpOptions

Class DumpOptions

src/bvar/variable.h:78–97  ·  view source on GitHub ↗

Options for Variable::dump_exposed().

Source from the content-addressed store, hash-verified

76
77// Options for Variable::dump_exposed().
78struct DumpOptions {
79 // Constructed with default options.
80 DumpOptions();
81
82 // If this is true, string-type values will be quoted.
83 bool quote_string;
84
85 // The ? in wildcards. Wildcards in URL need to use another character
86 // because ? is reserved.
87 char question_mark;
88
89 // Dump variables with matched display_filter
90 DisplayFilter display_filter;
91
92 // Name matched by these wildcards (or exact names) are kept.
93 std::string white_wildcards;
94
95 // Name matched by these wildcards (or exact names) are skipped.
96 std::string black_wildcards;
97};
98
99struct SeriesOptions {
100 SeriesOptions() : fixed_length(true), test_only(false) {}

Callers 1

TEST_FFunction · 0.50

Calls

no outgoing calls

Tested by 1

TEST_FFunction · 0.40