Skip to content

Commit 8da3a4f

Browse files
committed
Co-authored-by: rsbaek <[email protected]>
Co-authored-by: Arthur Jin <[email protected]>
1 parent d499cde commit 8da3a4f

File tree

11 files changed

+225
-500
lines changed

11 files changed

+225
-500
lines changed

.vscode/settings.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,11 @@
77
"editor.codeActionsOnSave": {
88
"source.fixAll.eslint": "explicit"
99
},
10-
"editor.acceptSuggestionOnEnter": "off"
10+
"editor.acceptSuggestionOnEnter": "off",
11+
"github.copilot.enable": {
12+
"*": false,
13+
"plaintext": false,
14+
"markdown": false,
15+
"scminput": false
16+
}
1117
}

README.md

Lines changed: 84 additions & 83 deletions
Large diffs are not rendered by default.

assets/Spooler.gif

-2.37 MB
Binary file not shown.

backend/package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/changelogs/docketeer20.notes.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Changelog
2+
3+
## v20.0.0
4+
#### Features
5+
- **Error Catcher Added:** Explanation
6+
- **Filtration Button Added:**
7+
- **Complete Update of All Dependencies:**
8+
- **Metrics Saved thingie:**
9+
- **Optimized Frontend Rendering:** Explanation
10+
11+
#### Bug Fixes
12+
- **Grafana Graphs :** Explanation
13+
14+
#### Fixes and Cleaning
15+
- **Updated :**

ui/package-lock.json

Lines changed: 106 additions & 106 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/src/components/Metrics/MetricFilterButton.module.scss

Lines changed: 0 additions & 143 deletions
This file was deleted.

ui/src/components/Metrics/MetricFilterButton.tsx

Lines changed: 0 additions & 110 deletions
This file was deleted.

ui/src/components/Metrics/Metrics.tsx

Lines changed: 1 addition & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { useState, useEffect } from 'react';
22
import styles from './Metrics.module.scss';
33
import { Metric, MetricsEntry, metricData } from 'types';
44
import Client from '../../models/Client'
5-
import MetricFilterButton from './MetricFilterButton';
5+
66
import global from '../global.module.scss'
77

88
const Metrics = ({ filters, setFilters}): JSX.Element => {
@@ -58,51 +58,6 @@ const Metrics = ({ filters, setFilters}): JSX.Element => {
5858
}, 3000);
5959
}
6060

61-
62-
63-
64-
65-
66-
67-
const actions = [
68-
{
69-
id: "action1",
70-
label: "CPU %",
71-
handler: () => console.log("Email notification sent"),
72-
},
73-
{
74-
id: "action2",
75-
label: "MEMORY USAGE",
76-
handler: () => console.log("Database updated"),
77-
},
78-
{
79-
id: "action3",
80-
label: "MEM %",
81-
handler: () => console.log("Report generated"),
82-
},
83-
{
84-
id: "action4",
85-
label: "NET I/O",
86-
handler: () => console.log("Records archived"),
87-
},
88-
{
89-
id: "action5",
90-
label: "BLOCK I/O",
91-
handler: () => console.log("Cloud sync completed"),
92-
},
93-
{
94-
id: "action6",
95-
label: "PID",
96-
handler: () => console.log("Cache cleared"),
97-
},
98-
];
99-
100-
101-
102-
103-
104-
105-
10661
return (
10762
<div>
10863
<div className={styles.iframeHeader}>
@@ -114,7 +69,6 @@ const Metrics = ({ filters, setFilters}): JSX.Element => {
11469
<button className={global.button1} onClick={getMetrics}>
11570
SAVE METRICS
11671
</button>
117-
<MetricFilterButton buttonText={"FILTER"} actions={actions} />
11872
</div>
11973
</div>
12074

0 commit comments

Comments
 (0)