* Modified variable type to have []string value * added repeatableStringKind * modify repeatableStringKind to actually handle multiple values * Modify applyFocus to work with multiple values for tagfocus/tagignore * Modify applyFocus to work with multiple values for tagfocus/tagignore * Modified CompileTagFilter to handle tag filters of the form -tagfocus=key1=val1 * Modified StringList * add testing for compileTagFilter * fixed typo * fixed code style error * Revert "fixed code style error" This reverts commit 0b1826c163. * Revert "fixed typo" This reverts commit 2593652bd0. * Revert "add testing for compileTagFilter" This reverts commit 152d7b0363. * Revert "Modified StringList" This reverts commit b57d35a762. * Revert "Modified CompileTagFilter to handle tag filters of the form -tagfocus=key1=val1" This reverts commit ebe1e344bf. * Revert "Modify applyFocus to work with multiple values for tagfocus/tagignore" This reverts commit 3b62091b67. * Revert "Modify applyFocus to work with multiple values for tagfocus/tagignore" This reverts commit 7172159cd3. * Revert "modify repeatableStringKind to actually handle multiple values" This reverts commit abb1e3ec4b. * Revert "added repeatableStringKind" This reverts commit 8b8e4e76fc. * Revert "Modified variable type to have []string value" This reverts commit 5f213dc4d1. * added support for filtering by specific tags * Fixed formatting problems * Updated variable name for clarity * Added test cases for tag filtering * Update tagfocus and tagignore description * Fixed formatting error * Updated docs to explain new tag filtering * Updated docs to clarify tag filtering * Updated docs to clarify tag filtering * Updated docs and help comments for tag filtering * Updated docs for tag filtering * Update pprof docs for tag filtering * Update tagfocus and tagignore help descriptions * Update tagfocus and tagignore descriptions in docs * Update tagfocus and tagignore descriptions in docs and help * Updated tagfocus and tagignore descriptions in docs; added TODO for regexp matching * Updated tagfocus and tagignore descriptions in docs * Modified docs fo tagfocus for clarity
|
||
2 | 2 |
|
3 | 3 |
|
4 | 4 |
|
5 |
|
|
5 |
|
|
6 | 6 |
|
7 | 7 |
|
8 | 8 |
|
|
||
105 | 105 |
|
106 | 106 |
|
107 | 107 |
|
108 |
|
|
109 |
|
|
108 |
|
|
109 |
|
|
110 | 110 |
|
111 | 111 |
|
112 |
|
|
113 |
|
|
114 |
|
|
115 |
|
|
116 |
|
|
117 |
|
|
118 |
|
|
119 |
|
|
120 |
|
|
121 |
|
|
122 |
|
|
123 |
|
|
124 |
|
|
125 |
|
|
126 |
|
|
127 |
|
|
128 |
|
|
129 |
|
|
130 |
|
|
131 |
|
|
132 |
|
|
133 |
|
|
134 |
|
|
135 |
|
|
136 |
|
|
137 |
|
|
138 |
|
|
139 |
|
|
140 |
|
|
141 |
|
|
142 |
|
|
143 |
|
|
144 |
|
|
145 |
|
|
146 |
|
|
147 |
|
|
148 |
|
|
149 |
|
|
150 |
|
|
151 |
|
|
152 |
|
|
153 |
|
|
154 |
|
|
155 |
|
|
156 |
|
|
157 |
|
|
112 | 158 |
|
113 | 159 |
|
114 | 160 |
|
|
||
195 | 195 |
|
196 | 196 |
|
197 | 197 |
|
198 |
|
|
199 |
|
|
198 |
|
|
199 |
|
|
200 |
|
|
201 |
|
|
200 | 202 |
|
201 | 203 |
|
202 |
|
|
204 |
|
|
205 |
|
|
206 |
|
|
203 | 207 |
|
204 | 208 |
|
205 | 209 |
|
|
||
77 | 77 |
|
78 | 78 |
|
79 | 79 |
|
80 |
|
|
81 |
|
|
82 |
|
|
83 |
|
|
84 |
|
|
85 |
|
|
86 |
|
|
87 |
|
|
88 |
|
|
89 |
|
|
80 | 90 |
|
81 | 91 |
|
82 |
|
|
83 |
|
|
84 |
|
|
85 |
|
|
92 |
|
|
93 |
|
|
94 |
|
|
95 |
|
|
96 |
|
|
97 |
|
|
98 |
|
|
99 |
|
|
100 |
|
|
101 |
|
|
102 |
|
|
103 |
|
|
86 | 104 |
|
87 | 105 |
|
88 | 106 |
|
107 |
|
|
108 |
|
|
109 |
|
|
110 |
|
|
111 |
|
|
112 |
|
|
89 | 113 |
|
90 | 114 |
|
91 | 115 |
|
92 | 116 |
|
117 |
|
|
93 | 118 |
|
94 | 119 |
|
95 | 120 |
|
|
||
98 | 123 |
|
99 | 124 |
|
100 | 125 |
|
126 |
|
|
127 |
|
|
128 |
|
|
129 |
|
|
130 |
|
|
131 |
|
|
132 |
|
|
133 |
|
|
134 |
|
|
135 |
|
|
136 |
|
|
137 |
|
|
138 |
|
|
139 |
|
|
140 |
|
|
141 |
|
|
142 |
|
|
101 | 143 |
|
102 |
|
|
103 |
|
|
104 |
|
|
144 |
|
|
145 |
|
|
105 | 146 |
|
106 |
|
|
107 |
|
|
147 |
|
|
148 |
|
|
108 | 149 |
|
109 | 150 |
|
110 | 151 |
|
111 |
|
|
112 | 152 |
|
113 |
|
|
153 |
|
|
114 | 154 |
|
115 | 155 |
|
116 | 156 |
|
|
||
998 | 998 |
|
999 | 999 |
|
1000 | 1000 |
|
1001 |
|
|
1002 |
|
|
1003 |
|
|
1004 |
|
|
1005 |
|
|
1001 | 1006 |
|
1002 |
|
|
1003 | 1007 |
|
1004 | 1008 |
|
1005 | 1009 |
|
|
||
1016 | 1020 |
|
1017 | 1021 |
|
1018 | 1022 |
|
1023 |
|
|
1024 |
|
|
1025 |
|
|
1026 |
|
|
1027 |
|
|
1028 |
|
|
1029 |
|
|
1030 |
|
|
1031 |
|
|
1032 |
|
|
1033 |
|
|
1034 |
|
|
1035 |
|
|
1036 |
|
|
1037 |
|
|
1038 |
|
|
1039 |
|
|
1040 |
|
|
1041 |
|
|
1042 |
|
|
1043 |
|
|
1044 |
|
|
1045 |
|
|
1046 |
|
|
1047 |
|
|
1048 |
|
|
1049 |
|
|
1050 |
|
|
1051 |
|
|
1052 |
|
|
1053 |
|
|
1054 |
|
|
1055 |
|
|
1056 |
|
|
1057 |
|
|
1058 |
|
|
1059 |
|
|
1060 |
|
|
1061 |
|
|
1062 |
|
|
1063 |
|
|
1064 |
|
|
1019 | 1065 |
|
1020 | 1066 |
|
1021 | 1067 |
|