We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The customer wants 10 or 15-min snaps 24/7; and to retain >100 snaps. (every 15 mins is 96 per day)
def _parse_retain(retain, name): result = _parse_spec_int(retain, 'retain', name, 0, 99) return result
Can we make that more like 500? We should discuss what a practicle max should be - new code will have 32k snaps
The text was updated successfully, but these errors were encountered:
Also, if one does go above 99, it makes the value 0
Sorry, something went wrong.
No branches or pull requests
The customer wants 10 or 15-min snaps 24/7; and to retain >100 snaps. (every 15 mins is 96 per day)
def _parse_retain(retain, name):
result = _parse_spec_int(retain, 'retain', name, 0, 99)
return result
Can we make that more like 500? We should discuss what a practicle max should be - new code will have 32k snaps
The text was updated successfully, but these errors were encountered: