Skip to content

Commit

Permalink
Merge pull request #80 from grafana/v0.6.1
Browse files Browse the repository at this point in the history
- [#77](#77) Add missing charts to the *TIMINGS* tab sections
- [#78](#78) Rename WebSockets *Pong Duration* to *Ping Duration*
- [#79](#79) Enable short descriptions of graphs

### Add missing charts to the *TIMINGS* tab sections

#### HTTP
- Request Failed Rate
- Request Rate
- Request Blocked

#### Browser
- Request Failed Rate

#### WebSockets
- Transfer Rate
- Sessions Rate

#### gRPC
- Transfer Rate
- Streams Rate

### Rename WebSockets *Pong Duration* to *Ping Duration*

The official name is "ping", so renameed it back to the official name (however the measured value is the response time)

### Enable short descriptions of graphs

Added "summary" configuration property (and placeholder value) to panels configuration.
  • Loading branch information
szkiba authored Oct 16, 2023
2 parents 891de54 + 08028e3 commit 5afdef3
Show file tree
Hide file tree
Showing 9 changed files with 342 additions and 59 deletions.
169 changes: 147 additions & 22 deletions dashboard/assets/packages/config/dist/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
],
"title": "Iteration Rate",
"kind": "stat",
"id": "tab-0.section-0.panel-0"
"id": "tab-0.section-0.panel-0",
"summary": "<placeholder panel summary>"
},
{
"series": [
Expand All @@ -23,7 +24,8 @@
],
"title": "VUs",
"kind": "stat",
"id": "tab-0.section-0.panel-1"
"id": "tab-0.section-0.panel-1",
"summary": "<placeholder panel summary>"
},
{
"series": [
Expand All @@ -33,7 +35,8 @@
],
"title": "HTTP Request Rate",
"kind": "stat",
"id": "tab-0.section-0.panel-2"
"id": "tab-0.section-0.panel-2",
"summary": "<placeholder panel summary>"
},
{
"series": [
Expand All @@ -43,7 +46,8 @@
],
"title": "HTTP Request Duration",
"kind": "stat",
"id": "tab-0.section-0.panel-3"
"id": "tab-0.section-0.panel-3",
"summary": "<placeholder panel summary>"
},
{
"series": [
Expand All @@ -53,7 +57,8 @@
],
"title": "Received Rate",
"kind": "stat",
"id": "tab-0.section-0.panel-4"
"id": "tab-0.section-0.panel-4",
"summary": "<placeholder panel summary>"
},
{
"series": [
Expand All @@ -63,7 +68,8 @@
],
"title": "Sent Rate",
"kind": "stat",
"id": "tab-0.section-0.panel-5"
"id": "tab-0.section-0.panel-5",
"summary": "<placeholder panel summary>"
}
],
"id": "tab-0.section-0"
Expand All @@ -81,6 +87,7 @@
],
"title": "VUs",
"id": "tab-0.section-1.panel-0",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
Expand All @@ -94,6 +101,7 @@
],
"title": "Transfer Rate",
"id": "tab-0.section-1.panel-1",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
Expand All @@ -104,6 +112,7 @@
],
"title": "HTTP Request Duration",
"id": "tab-0.section-1.panel-2",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
Expand All @@ -114,6 +123,7 @@
],
"title": "Iteration Duration",
"id": "tab-0.section-1.panel-3",
"summary": "<placeholder panel summary>",
"kind": "chart"
}
],
Expand All @@ -136,6 +146,29 @@
],
"title": "Request Duration",
"id": "tab-1.section-0.panel-0",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
"series": [
{
"query": "http_req_failed[?!tags && rate ]"
}
],
"title": "Request Failed Rate",
"id": "tab-1.section-0.panel-1",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
"series": [
{
"query": "http_reqs[?!tags && rate]"
}
],
"title": "Request Rate",
"id": "tab-1.section-0.panel-2",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
Expand All @@ -145,7 +178,8 @@
}
],
"title": "Request Waiting",
"id": "tab-1.section-0.panel-1",
"id": "tab-1.section-0.panel-3",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
Expand All @@ -155,7 +189,8 @@
}
],
"title": "TLS handshaking",
"id": "tab-1.section-0.panel-2",
"id": "tab-1.section-0.panel-4",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
Expand All @@ -165,7 +200,8 @@
}
],
"title": "Request Sending",
"id": "tab-1.section-0.panel-3",
"id": "tab-1.section-0.panel-5",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
Expand All @@ -175,7 +211,8 @@
}
],
"title": "Request Connecting",
"id": "tab-1.section-0.panel-4",
"id": "tab-1.section-0.panel-6",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
Expand All @@ -185,7 +222,19 @@
}
],
"title": "Request Receiving",
"id": "tab-1.section-0.panel-5",
"id": "tab-1.section-0.panel-7",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
"series": [
{
"query": "http_req_blocked[?!tags && (avg || p90 || p95 || p99)]"
}
],
"title": "Request Blocked",
"id": "tab-1.section-0.panel-8",
"summary": "<placeholder panel summary>",
"kind": "chart"
}
],
Expand All @@ -203,6 +252,18 @@
],
"title": "Request Duration",
"id": "tab-1.section-1.panel-0",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
"series": [
{
"query": "browser_http_req_failed[?!tags && rate ]"
}
],
"title": "Request Failed Rate",
"id": "tab-1.section-1.panel-1",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
Expand All @@ -212,7 +273,8 @@
}
],
"title": "Largest Contentful Paint",
"id": "tab-1.section-1.panel-1",
"id": "tab-1.section-1.panel-2",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
Expand All @@ -222,7 +284,8 @@
}
],
"title": "First Input Delay",
"id": "tab-1.section-1.panel-2",
"id": "tab-1.section-1.panel-3",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
Expand All @@ -232,7 +295,8 @@
}
],
"title": "Cumulative Layout Shift",
"id": "tab-1.section-1.panel-3",
"id": "tab-1.section-1.panel-4",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
Expand All @@ -242,7 +306,8 @@
}
],
"title": "Time to First Byte",
"id": "tab-1.section-1.panel-4",
"id": "tab-1.section-1.panel-5",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
Expand All @@ -252,7 +317,8 @@
}
],
"title": "First Contentful Paint",
"id": "tab-1.section-1.panel-5",
"id": "tab-1.section-1.panel-6",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
Expand All @@ -262,7 +328,8 @@
}
],
"title": "Interaction to Next Paint",
"id": "tab-1.section-1.panel-6",
"id": "tab-1.section-1.panel-7",
"summary": "<placeholder panel summary>",
"kind": "chart"
}
],
Expand All @@ -280,6 +347,7 @@
],
"title": "Connect Duration",
"id": "tab-1.section-2.panel-0",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
Expand All @@ -290,6 +358,7 @@
],
"title": "Session Duration",
"id": "tab-1.section-2.panel-1",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
Expand All @@ -298,8 +367,34 @@
"query": "ws_ping[?!tags && (avg || p90 || p95 || p99)]"
}
],
"title": "Pong Duration",
"title": "Ping Duration",
"id": "tab-1.section-2.panel-2",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
"series": [
{
"query": "ws_msgs_sent[?!tags && rate]"
},
{
"query": "ws_msgs_received[?!tags && rate]"
}
],
"title": "Transfer Rate",
"id": "tab-1.section-2.panel-3",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
"series": [
{
"query": "ws_sessions[?!tags && rate]"
}
],
"title": "Sessions Rate",
"id": "tab-1.section-2.panel-4",
"summary": "<placeholder panel summary>",
"kind": "chart"
}
],
Expand All @@ -317,6 +412,32 @@
],
"title": "Request Duration",
"id": "tab-1.section-3.panel-0",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
"series": [
{
"query": "grpc_streams_msgs_sent[?!tags && rate]"
},
{
"query": "grpc_streams_msgs_received[?!tags && rate]"
}
],
"title": "Transfer Rate",
"id": "tab-1.section-3.panel-1",
"summary": "<placeholder panel summary>",
"kind": "chart"
},
{
"series": [
{
"query": "grpc_streams[?!tags && rate]"
}
],
"title": "Streams Rate",
"id": "tab-1.section-3.panel-2",
"summary": "<placeholder panel summary>",
"kind": "chart"
}
],
Expand All @@ -341,7 +462,8 @@
],
"title": "Trends",
"kind": "summary",
"id": "tab-2.section-0.panel-0"
"id": "tab-2.section-0.panel-0",
"summary": "<placeholder panel summary>"
}
],
"title": "",
Expand All @@ -357,7 +479,8 @@
],
"title": "Counters",
"kind": "summary",
"id": "tab-2.section-1.panel-0"
"id": "tab-2.section-1.panel-0",
"summary": "<placeholder panel summary>"
},
{
"series": [
Expand All @@ -367,7 +490,8 @@
],
"title": "Rates",
"kind": "summary",
"id": "tab-2.section-1.panel-1"
"id": "tab-2.section-1.panel-1",
"summary": "<placeholder panel summary>"
},
{
"series": [
Expand All @@ -377,7 +501,8 @@
],
"title": "Gauges",
"kind": "summary",
"id": "tab-2.section-1.panel-2"
"id": "tab-2.section-1.panel-2",
"summary": "<placeholder panel summary>"
}
],
"title": "",
Expand Down
Loading

0 comments on commit 5afdef3

Please sign in to comment.