Skip to content

Commit 2b58be3

Browse files
committed
multi-delete support in http tagdb
1 parent f8acc47 commit 2b58be3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

webapp/graphite/tags/http.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@ def tag_multi_series(self, seriesList, requestContext=None):
8989
def del_series(self, series, requestContext=None):
9090
return self.request('POST', '/tags/delSeries', {'path': series}, requestContext)
9191

92+
def del_multi_series(self, seriesList, requestContext=None):
93+
return self.request('POST', '/tags/delSeries', {'path': seriesList}, requestContext)
94+
9295
def auto_complete_tags(self, exprs, tagPrefix=None, limit=None, requestContext=None):
9396
"""
9497
Return auto-complete suggestions for tags based on the matches for the specified expressions, optionally filtered by tag prefix

0 commit comments

Comments
 (0)