mirror of
https://github.com/netbirdio/plugins.git
synced 2026-05-22 18:44:07 -07:00
security/etpro-telemetry: always show an available status
Bump version to clear the relatively hight revision count.
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
PLUGIN_NAME= etpro-telemetry
|
||||
PLUGIN_VERSION= 1.7
|
||||
PLUGIN_REVISION= 6
|
||||
PLUGIN_VERSION= 1.8
|
||||
PLUGIN_COMMENT= ET Pro Telemetry Edition
|
||||
PLUGIN_MAINTAINER= ad@opnsense.org
|
||||
PLUGIN_DEPENDS= py${PLUGIN_PYTHON}-netaddr
|
||||
|
||||
@@ -41,7 +41,7 @@ export default class ETProTelemetry extends BaseTableWidget {
|
||||
|
||||
async onWidgetTick() {
|
||||
const data = await this.ajaxCall('/api/diagnostics/proofpoint_et/status');
|
||||
if (data['sensor_status'].toLowerCase() == 'active') {
|
||||
if (data['sensor_status'].length) {
|
||||
$('#etpro_sensor_status').text(data['sensor_status']);
|
||||
$('#etpro_event_received').text(data['event_received']);
|
||||
$('#etpro_last_rule_download').text(data['last_rule_download']);
|
||||
|
||||
Reference in New Issue
Block a user