Skip to content

Commit

Permalink
Added flow exporter table config JSON (#8511)
Browse files Browse the repository at this point in the history
* Fixed #8492, removed unused formatting function in lua

* Fixed host pool doc #8487

* Fixed ebroken menu entry highlight #8498

* Fixed geomap REST location: #8486

* Removed log

* Added german #8488

* Implemented ticket: #7648

* Added new endpoints to python API

* Implemented flow exporter table: #8490

* Added table config for flow exporter
  • Loading branch information
DGabri authored Jul 10, 2024
1 parent 5e8469a commit ac4817f
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions httpdocs/tables_config/exporters.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"id": "exporters",
"data_url": "lua/pro/rest/v2/get/exporters/data.lua",
"use_current_page": false,
"enable_search": false,
"paging": false,
"display_empty_rows": false,
"default_sort": {
"column_id": "exported_flows",
"sort": 1
},
"columns": [
{
"id": "ip",
"title_i18n": "flow_devices.probe_ip",
"data_field": "ip",
"sortable": true,
"class": [
"text-nowrap"
]
},
{
"id": "name",
"title_i18n": "name",
"data_field": "name",
"sortable": true,
"class": [
"text-nowrap"
]
},
{
"id": "exported_flows",
"title_i18n": "graphs.metric_labels.exported_flows",
"data_field": "exported_flows",
"sortable": true,
"class": [
"text-nowrap"
]
},
{
"id": "dropped_flows",
"title_i18n": "graphs.metric_labels.dropped_flows",
"data_field": "dropped_flows",
"sortable": true,
"class": [
"text-nowrap"
]
}
]
}

0 comments on commit ac4817f

Please sign in to comment.