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
Implement high-frequency default values for flushInterval and batchSize in Pinorama Transport to prioritize near-instantaneous log delivery, and expose these options in the Pinorama Studio CLI.
Proposed Changes
Update Pinorama Studio CLI defaults:
flushInterval: 100ms
batchSize: 10
Add CLI options to Pinorama Studio:
--flush-interval <ms>
--batch-size <number>
Use Cases
Live Mode (Default)
The default configuration prioritizes live logging, which is the most common use case:
flushInterval: 100ms
batchSize: 10
Post-Mortem Analysis
For post-mortem analysis of large log files, the documentation will recommend adjusting these values. Suggested starting points (subject to user needs and system capabilities):
flushInterval: ~5000ms
batchSize: ~500
Note: Documentation will emphasize that these are recommendations and users should adjust based on their specific requirements.
The text was updated successfully, but these errors were encountered:
Implement high-frequency default values for
flushInterval
andbatchSize
in Pinorama Transport to prioritize near-instantaneous log delivery, and expose these options in the Pinorama Studio CLI.Proposed Changes
Update Pinorama Studio CLI defaults:
flushInterval
: 100msbatchSize
: 10Add CLI options to Pinorama Studio:
--flush-interval <ms>
--batch-size <number>
Use Cases
Live Mode (Default)
The default configuration prioritizes live logging, which is the most common use case:
flushInterval
: 100msbatchSize
: 10Post-Mortem Analysis
For post-mortem analysis of large log files, the documentation will recommend adjusting these values. Suggested starting points (subject to user needs and system capabilities):
flushInterval
: ~5000msbatchSize
: ~500Note: Documentation will emphasize that these are recommendations and users should adjust based on their specific requirements.
The text was updated successfully, but these errors were encountered: