forked from grafana/jsonnet-libs
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add process lib * Add jvm-observ-lib * Update jvm-mixin * Remove empty rules file * Update spring boot mixin * Update jvm mixin * Conditional rows inclusing * Update README * Fix otel uptime signal query * Move panels inside rows. Use resolveCollapsedFlagOnRows * Update lib * Fix commonlib(in case of stub type) * Update deps * Remove collapsed rows
- Loading branch information
1 parent
aa29d29
commit c66541c
Showing
48 changed files
with
2,101 additions
and
4,532 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
lint: | ||
mixtool lint mixin.libsonnet | ||
|
||
build: | ||
mixtool generate all mixin.libsonnet | ||
|
||
clean: | ||
rm -rf dashboards_out alerts.yaml rules.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
# JVM Integration | ||
|
||
This integration works with the [Java client](https://github.com/prometheus/client_java). It requires each JVM application to export the metrics with the client. | ||
|
||
The dashboard is a fork of [Joel Takvorian's design](https://grafana.com/grafana/dashboards/3066). | ||
# JVM integration | ||
|
||
This integration works with the [Java client](https://prometheus.github.io/client_java/instrumentation/jvm/). It requires each JVM application to export the metrics with the client. | ||
Uses [JVM observability lib](../jvm-observ-lib/). |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
filteringSelector: 'job!=""', | ||
groupLabels: ['job'], | ||
instanceLabels: ['instance'], | ||
uid: 'jvm', | ||
dashboardNamePrefix: '', | ||
dashboardTags: ['java', 'jvm', 'prometheus_client'], | ||
metricsSource: 'prometheus', | ||
alertHeapWarning: 80, // % | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"version": 1, | ||
"dependencies": [ | ||
{ | ||
"source": { | ||
"local": { | ||
"directory": "../common-lib" | ||
} | ||
}, | ||
"version": "" | ||
}, | ||
{ | ||
"source": { | ||
"local": { | ||
"directory": "../jvm-observ-lib" | ||
} | ||
}, | ||
"version": "" | ||
} | ||
], | ||
"legacyImports": true | ||
} |
Oops, something went wrong.