Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: adding ndmp session rest template #2531

Merged
merged 3 commits into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 23 additions & 0 deletions conf/rest/9.7.0/ndmp_sessions.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: NDMPSession
query: api/protocols/ndmp/sessions
object: ndmp_session

counters:
- ^^uuid => uuid
- ^backup_engine => backup_engine
- ^client_address => client_address
- ^client_port => client_port
- ^data.operation => operation
- ^data_path => data_path
- ^mover.mode => mode
- ^node.name => node
- ^source_address => source_address
- ^svm.name => svm
- ^tape_device => tape_device
- ^tape_mode => tape_mode
- data.bytes_processed => data_bytes_processed
- mover.bytes_moved => mover_bytes_moved


export_options:
include_all_labels: true
1 change: 1 addition & 0 deletions conf/rest/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ objects:
Health: health.yaml
Lun: lun.yaml
Namespace: namespace.yaml
# NDMPSession: ndmp_sessions.yaml
# NetConnections: netconnections.yaml
# NetPort: netport.yaml
NetRoute: netroute.yaml
Expand Down
1 change: 1 addition & 0 deletions integration/test/dashboard_json_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ var excludeCounters = []string{
"svm_write_total",
"change_log",
"nfs_clients_",
"ndmp_session_",
}

var flakyCounters = []string{
Expand Down