We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9ecb2a commit 70230f5Copy full SHA for 70230f5
mamonsu/plugins/pgsql/xlog.py
@@ -74,7 +74,7 @@ def run(self, zbx):
74
zbx.send('pgsql.replication.write_lag[{0}]'.format(
75
info[0]), info[3])
76
zbx.send('pgsql.replication.total_lag[{0}]'.format(
77
- info[0]), float(info[4]), self.DELTA_SPEED)
+ info[0]), float(info[4]))
78
zbx.send('pgsql.replication.discovery[]', zbx.json({'data': lags}))
79
del lags
80
else:
@@ -86,7 +86,7 @@ def run(self, zbx):
86
lags.append({'{#APPLICATION_NAME}': info[0]})
87
88
89
- info[0]), float(info[1]), self.DELTA_SPEED)
+ info[0]), float(info[1]))
90
91
92
0 commit comments