Skip to content

Commit

Permalink
Exporters interfaces table config (#8672)
Browse files Browse the repository at this point in the history
* Fixed telemetry response format, no impact on base ntopng, different endpoint

* Fixed error

* Added toboolean instead of string compare

* Added ASN name in ASN timeseries page

* Added exportes interfaces page

* Exporters interfaces table config
  • Loading branch information
DGabri authored Aug 26, 2024
1 parent 57ecae1 commit 08b1287
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions httpdocs/tables_config/exporters_interfaces.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{
"id": "exporters_interfaces",
"data_url": "lua/pro/rest/v2/get/exporters/exporters_interfaces.lua",
"use_current_page": false,
"enable_search": false,
"paging": false,
"display_empty_rows": true,
"columns": [
{
"id": "nprobe_ip",
"title_i18n": "flow_devices.nprobe_ip",
"data_field": "nprobe_ip",
"sortable": true,
"min-width": "30px",
"sticky": true,
"class": [
"text-nowrap"
]
},
{
"id": "exporter_ip",
"title_i18n": "flow_devices.exporter_ip",
"data_field": "exporter_ip",
"sortable": true,
"sticky": true,
"min-width": "30px",
"class": [
"text-nowrap"
]
},
{
"id": "interface_id",
"title_i18n": "interface_id",
"data_field": "interface_id",
"sortable": true,
"min-width": "80px",
"class": [
"text-center",
"text-nowrap"
]
},
{
"id": "in_bytes",
"title_i18n": "snmp.in_bytes",
"data_field": "in_bytes",
"sortable": true,
"min-width": "40px",
"class": [
"text-center",
"text-nowrap"
]
},
{
"id": "out_bytes",
"title_i18n": "snmp.out_bytes",
"data_field": "out_bytes",
"sortable": true,
"min-width": "40px",
"class": [
"text-center",
"text-nowrap"
]
}
]
}


0 comments on commit 08b1287

Please sign in to comment.