forked from open-telemetry/opentelemetry-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add prometheus service into docker compose and add a basic metric to …
…frontend (open-telemetry#160) * add prometheus service into docker compose and add a basic metric to frontend service Signed-off-by: Ziqi Zhao <[email protected]> * fix lint errors Signed-off-by: Ziqi Zhao <[email protected]> * fix for comments Signed-off-by: Ziqi Zhao <[email protected]> * fix for yamllint error Signed-off-by: Ziqi Zhao <[email protected]> * add http request duration metric Signed-off-by: Ziqi Zhao <[email protected]> * fix for comments Signed-off-by: Ziqi Zhao <[email protected]> * fix for comments Signed-off-by: Ziqi Zhao <[email protected]> Co-authored-by: Carter Socha <[email protected]>
- Loading branch information
1 parent
c82e2d9
commit 1d4e5c9
Showing
9 changed files
with
151 additions
and
16 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
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
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 @@ | ||
global: | ||
evaluation_interval: 30s | ||
scrape_interval: 5s | ||
scrape_configs: | ||
- job_name: otel | ||
static_configs: | ||
- targets: | ||
- 'otelcol:9464' |