Skip to content
Snippets Groups Projects
Commit 6d55b9f3 authored by Erik Reid's avatar Erik Reid
Browse files

implemented /service/category route

parent 27b4ef0d
No related branches found
No related tags found
No related merge requests found
......@@ -82,3 +82,23 @@ def poller_interface_oids(hostname):
result.append(ifc_data)
return jsonify(result)
@routes.route('/services/{category}', methods=['GET', 'POST'])
@common.require_accepts_json
def service_category_interfaces(category):
result = []
r = common.get_current_redis()
for k in r.scan_iter(f'interface-services:{category}:*'):
ifc = r.get(k.decode('utf-8'))
result.append(json.loads(ifc.decode('utf-8')))
if not result:
return Response(
response=f'no info available for service category {category}',
status=404,
mimetype="text/html")
return jsonify(result)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment