You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/config.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -191,27 +191,35 @@ Defaults to `false`.
191
191
192
192
Profiling configuration. Allows for runtime profiling of the processing.
193
193
Must be one of the following:
194
+
194
195
* Type _boolean_.
195
196
If set, profiling is enabled and output is logged using level INFO. Otherwise, profiling is disabled.
197
+
196
198
* Type _string_.
197
199
Profile path. Enables profiling and writes a profiling report to given path.
200
+
198
201
* Type _object_.
199
202
200
203
*`enabled`:
201
204
Type _boolean_.
202
205
Enable or disable profiling.
206
+
203
207
*`path`:
204
208
Type _string_.
205
209
Local file path for profiling output.
210
+
206
211
*`log_level`:
207
212
Log level. Use 'NOTSET' to disable logging.
208
213
Defaults to `"INFO"`.
209
214
Must be one of `"CRITICAL", "ERROR", "WARNING", "INFO", "DEBUG", "NOTSET"`.
215
+
210
216
*`keys`:
211
217
Type _array_.
212
218
Sort output according to the supplied column names. Refer to [Stats.sort_stats(*keys)](https://docs.python.org/3/library/profile.html#pstats.Stats.sort_stats).
219
+
Defaults to `["tottime"]`.
213
220
214
221
Must be one of `"calls", "cumulative", "cumtime", "file", "filename", "module", "ncalls", "pcalls", "line", "name", "nfl", "stdname", "time", "tottime"`.
222
+
215
223
*`restrictions`:
216
224
Type _array_.
217
225
Used to limit the list down to the significant entries in the profiling report. Refer to [Stats.print_stats(*restrictions)](https://docs.python.org/3/library/profile.html#pstats.Stats.print_stats).
0 commit comments