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
Issue: Disabling a detector no longer works.
Suspected Cause: API change on SFX side. We used to pass in disabled:disabled as an option for a detector to disable it. https://github.com/Nike-Inc/signal_analog/blob/master/signal_analog/detectors.py#L270-L280
disabled:disabled
Now it appears disabling a detector is with a PUT to /detector/{id}/disable https://developers.signalfx.com/detectors_reference.html#tag/Disable-Single-Detector
/detector/{id}/disable
We will need to refactor to grab the id for the matching detector to be disabled and hit that endpoint.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue:
Disabling a detector no longer works.
Suspected Cause:
API change on SFX side. We used to pass in
disabled:disabled
as an option for a detector to disable it.https://github.com/Nike-Inc/signal_analog/blob/master/signal_analog/detectors.py#L270-L280
Now it appears disabling a detector is with a PUT to
/detector/{id}/disable
https://developers.signalfx.com/detectors_reference.html#tag/Disable-Single-Detector
We will need to refactor to grab the id for the matching detector to be disabled and hit that endpoint.
The text was updated successfully, but these errors were encountered: