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: add workload panels in workload dashboard #2100

Merged
merged 35 commits into from
Aug 11, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
9c12d51
feat: add workload panels in workload dashboard
rahulguptajss May 19, 2023
6443fbe
feat: add workload panels in workload dashboard
rahulguptajss May 19, 2023
b4703ff
Merge branch 'main' into rg2-workload-dash
rahulguptajss May 22, 2023
4d5b123
feat: workload dashboard
rahulguptajss May 23, 2023
a988bee
feat: workload dashboard
rahulguptajss May 23, 2023
104925d
feat: workload dashboard
rahulguptajss May 25, 2023
56cc6ca
feat: workload dashboard
rahulguptajss May 25, 2023
55503b9
Merge branch 'main' into rg2-workload-dash
rahulguptajss May 30, 2023
73c059e
feat: workload dashboard changes
rahulguptajss May 30, 2023
7beda41
feat: workload dashboard changes
rahulguptajss May 30, 2023
ee6c1b6
Merge branch 'main' into rg2-workload-dash
rahulguptajss Jun 13, 2023
5e4c10c
feat: make workload_class configurable
rahulguptajss Jun 14, 2023
fffd388
Merge branch 'main' into rg2-workload-dash
cgrinds Jul 19, 2023
fdaeac1
Merge remote-tracking branch 'origin/main' into rg2-workload-dash
rahulguptajss Jul 26, 2023
fa508c0
feat: add workload panels
rahulguptajss Jul 26, 2023
1f3a7ec
feat: add workload panels
rahulguptajss Jul 26, 2023
61f3af0
feat: add workload panels
rahulguptajss Jul 26, 2023
8d60d3f
feat: add workload panels
rahulguptajss Jul 26, 2023
7347639
feat: add workload panels
rahulguptajss Jul 26, 2023
a4a38cc
feat: add workload panels
rahulguptajss Jul 28, 2023
38adfdb
Merge remote-tracking branch 'origin/main' into rg2-workload-dash
rahulguptajss Jul 28, 2023
9f528e9
feat: add workload panels
rahulguptajss Jul 28, 2023
c0f0c5e
Merge remote-tracking branch 'origin/main' into rg2-workload-dash
rahulguptajss Jul 31, 2023
62307f4
feat: add service center view
rahulguptajss Aug 1, 2023
7486a7c
feat: add service center view
rahulguptajss Aug 1, 2023
2513a1b
feat: add service center view
rahulguptajss Aug 1, 2023
fa095d7
feat: add service center view
rahulguptajss Aug 1, 2023
f35e155
Merge remote-tracking branch 'origin/main' into rg2-workload-dash
rahulguptajss Aug 4, 2023
8e940e9
feat: add comments for detail workload
rahulguptajss Aug 4, 2023
ec74b50
feat: add comments for detail workload
rahulguptajss Aug 8, 2023
62836d9
feat: address review comments
rahulguptajss Aug 9, 2023
9f35b44
feat: address review comments
rahulguptajss Aug 9, 2023
dda803c
feat: address review comments
rahulguptajss Aug 9, 2023
04ee524
feat: address review comments
rahulguptajss Aug 9, 2023
df4c7db
feat: remove workload class from templates
rahulguptajss Aug 10, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/tools/grafana/dashboard_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ func TestOnlyHighlightsExpanded(t *testing.T) {
"cmode/shelf.json": 2,
"cmode/security.json": 3,
"cmode/fsa.json": 2,
"cmode/workload.json": 2,
"cmode/workload.json": 1,
"cmode/smb.json": 2,
"cmode/health.json": 2,
"storagegrid/fabricpool.json": 2,
Expand Down
15 changes: 15 additions & 0 deletions conf/rest/9.12.0/qos_workload.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: QosWorkload
query: api/storage/qos/workloads
object: qos_workload

counters:
- ^^uuid => uuid
- ^name
- ^workload_class => class

export_options:
instance_keys:
- uuid
instance_labels:
- class
- name
1 change: 1 addition & 0 deletions conf/rest/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ objects:
OntapS3Policy: ontap_s3_policy.yaml
QosPolicyAdaptive: qos_policy_adaptive.yaml
QosPolicyFixed: qos_policy_fixed.yaml
QosWorkload: qos_workload.yaml
Qtree: qtree.yaml
Security: security.yaml
SecurityAccount: security_account.yaml
Expand Down
18 changes: 18 additions & 0 deletions conf/zapi/cdot/9.8.0/qos_workload.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: QosWorkload
query: qos-workload-get-iter
object: qos_workload

counters:
qos-workload-info:
- ^^workload-uuid => uuid
- ^workload-class => class
- ^workload-name => name

collect_only_labels: true

export_options:
instance_keys:
- uuid
instance_labels:
- class
- name
1 change: 1 addition & 0 deletions conf/zapi/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ objects:
NtpServer: ntpserver.yaml
QosPolicyAdaptive: qos_policy_adaptive.yaml
QosPolicyFixed: qos_policy_fixed.yaml
QosWorkload: qos_workload.yaml
Qtree: qtree.yaml
Security: security.yaml
SecurityAccount: security_account.yaml
Expand Down
Loading