You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[jaeger] Add Panels for Service Performance Monitoring
It is now possible to use the new Service Performance Monitoring feature
of the Jaeger plugin within dashboards. It is possible to add panels for
the service latency, error rate and request rate and a panel for the
metrics of the operations of a service.
It is now also possible to select the span kinds which should be
included in the different metrics. By default we always include all span
kinds.
Copy file name to clipboardexpand all lines: docs/plugins/azure.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -171,7 +171,7 @@ The `*` value is a special value, which allows access to all resources, resource
171
171
- `verbs`: `delete`, `get`, `post` and `put`
172
172
173
173
!!! note
174
-
You have to set the `permissionsEnabled` property in the configuration to `true` and you must enable [authentication](../getting-started/configuration/authentication.md) for kobs to use this feature.
174
+
You have to set the `permissionsEnabled` property in the configuration to `true` and you must enable [authentication](../getting-started/configuration/auth.md) for kobs to use this feature.
Copy file name to clipboardexpand all lines: docs/plugins/jaeger.md
+66-1
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,8 @@ The following options can be used for a panel with the Jaeger plugin:
52
52
| Field | Type | Description | Required |
53
53
| ----- | ---- | ----------- | -------- |
54
54
| showChart | boolean | If this is `true` the chart with the traces will be shown. | No |
55
-
| queries | [[]Query](#query) | A list of Jaeger queries, which can be selected by the user. | Yes |
55
+
| queries | [[]Query](#query) | A list of Jaeger queries, which can be selected by the user. | No |
56
+
| metrics | [Metrics](#metrics) | The configuration to show the metrics for the Service Performance Monitoring. | No |
56
57
57
58
### Query
58
59
@@ -66,6 +67,14 @@ The following options can be used for a panel with the Jaeger plugin:
66
67
| operation | string | An optional operation to retrieve traces for. | No |
67
68
| tags | string | Tags, which the traces must be contain. | No |
68
69
70
+
### Metrics
71
+
72
+
| Field | Type | Description | Required |
73
+
| ----- | ---- | ----------- | -------- |
74
+
| type | string | The metrics type which should be displayed. Must be one of the following: `servicelatency`, `serviceerrors`, `servicecalls` or `operations`. | Yes |
75
+
| service | string | The service for which the selected metrics should be displayed. | Yes |
76
+
| spanKinds | string | A list of span kinds for which the selected metrics should be displayed. By default it includes all span kinds: `unspecified`, `internal`, `server`, `client`, `producer` and `consumer`. | No |
0 commit comments