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
Issue/Feature Description:
In delfin/exporter/prometheus/alert_manager.py,
In the function definition, def push_prometheus_alert(self, alerts):
try:
response = requests.post('http://' + host + ":" + port +
'/api/v1/alerts',
json=self.alerts)
if response.status_code != 200:
here using Http protocol can be insecure
Why this issue to fixed / feature is needed(give scenarios or use cases):
Using Http protocol can be insecure . Https can be used instead How to reproduce, in case of a bug:
Other Notes / Environment Information: (Please give the env information, log link or any useful information for this issue)
The text was updated successfully, but these errors were encountered:
Issue/Feature Description:
In delfin/exporter/prometheus/alert_manager.py,
In the function definition,
def push_prometheus_alert(self, alerts):
here using Http protocol can be insecure
Why this issue to fixed / feature is needed(give scenarios or use cases):
Using Http protocol can be insecure . Https can be used instead
How to reproduce, in case of a bug:
Other Notes / Environment Information: (Please give the env information, log link or any useful information for this issue)
The text was updated successfully, but these errors were encountered: