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

Removing Warnings #18

Merged
merged 1 commit into from
Jul 18, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ pages:
- displayer:
type: METRIC
chart:
height: "100"
height: 100
general:
visible: true
title: Total Products
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ pages:
- span: 6
components:
- displayer:
type: linechart
type: LINECHART

general:
title: Goals by Day
Expand All @@ -188,7 +188,7 @@ pages:
- span: 6
components:
- displayer:
type: barchart
type: BARCHART
general:
title: Goals by Stadium
axis:
Expand All @@ -215,7 +215,7 @@ pages:
- span: 6
components:
- displayer:
type: bubblechart
type: BUBBLECHART
general:
title: Goals by Weather
subtitle: Bubble shows total matches
Expand All @@ -241,7 +241,7 @@ pages:
- span: 6
components:
- displayer:
type: bubblechart
type: BUBBLECHART
general:
title: Goals by Attendance
subtitle: Bubble shows total goals
Expand Down
10 changes: 5 additions & 5 deletions samples/jupyter-hub-metrics/jupyter-hub-metrics.dash.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ pages:
general:
title: Startup (seconds)
chart:
width: "150"
width: 150
html:
javascript: document.getElementById(${this}.id + "Icon").className = "fa fa-clock-o";
columns:
Expand All @@ -131,7 +131,7 @@ pages:
- span: 4
components:
- displayer:
type: barchart
type: BARCHART
general:
title: Server Spawn
chart:
Expand All @@ -155,7 +155,7 @@ pages:
- span: 4
components:
- displayer:
type: barchart
type: BARCHART
general:
title: Server Stop
filter:
Expand All @@ -177,7 +177,7 @@ pages:
- span: 4
components:
- displayer:
type: barchart
type: BARCHART
general:
title: Proxy Add
lookup:
Expand All @@ -196,7 +196,7 @@ pages:
- columns:
- components:
- displayer:
type: barchart
type: BARCHART
extraConfiguration: >-
{
"xAxis": {
Expand Down
2 changes: 1 addition & 1 deletion samples/model-mesh-metrics/model-mesh-metrics.dash.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ pages:
- html: >-
<p style="font-size: 25px; font-weight: 600"> JVM Memory </p>
- displayer:
type: barchart
type: BARCHART
chart:
resizable: true
height: 400
Expand Down
22 changes: 11 additions & 11 deletions samples/triton-server-dashboard/triton-server-dashboard.dash.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pages:
general:
title: Running Models
chart:
width: "150"
width: 150
html:
javascript: document.getElementById(${this}.id + "Icon").className = "fa fa-cubes";
columns:
Expand All @@ -52,7 +52,7 @@ pages:
- functions:
- source: labels
function: COUNT
- span: "3"
- span: 3
components:
- displayer:
type: METRIC
Expand All @@ -76,15 +76,15 @@ pages:
- functions:
- source: value
function: SUM
- span: "3"
- span: 3
components:
- displayer:
type: METRIC
general:
title: Inference Requests Success
visible: true
chart:
width: "150"
width: 150
html:
javascript: document.getElementById(${this}.id + "Icon").className = "pficon-ok";
columns:
Expand All @@ -101,7 +101,7 @@ pages:
- functions:
- source: value
function: SUM
- span: "3"
- span: 3
components:
- displayer:
type: METRIC
Expand Down Expand Up @@ -155,7 +155,7 @@ pages:
- properties:
margin-top: 20px
columns:
- span: "4"
- span: 4
components:
- html: <h3>Inference Count</h3>
properties:
Expand Down Expand Up @@ -202,7 +202,7 @@ pages:
- source: labels
- source: value
function: SUM
- span: "4"
- span: 4
components:
- html: <h3>Sucessful Inferences</h3>
properties:
Expand Down Expand Up @@ -248,7 +248,7 @@ pages:
- source: labels
- source: value
function: SUM
- span: "4"
- span: 4
components:
- html: <h3>Failure Inferences</h3>
properties:
Expand Down Expand Up @@ -297,7 +297,7 @@ pages:
- properties:
margin-top: 20px
columns:
- span: "4"
- span: 4
components:
- html: <h3>Request Total Duration</h3>
properties:
Expand Down Expand Up @@ -338,7 +338,7 @@ pages:
- source: labels
- source: value
column: Duration
- span: "4"
- span: 4
components:
- html: <h3>Inference Total Duration</h3>
properties:
Expand Down Expand Up @@ -383,7 +383,7 @@ pages:
- source: labels
- source: value
column: Duration
- span: "4"
- span: 4
components:
- html: <h3>Inference Queue Wait</h3>
properties:
Expand Down
Loading