-
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.
#75 Configured prometheus and grafana
- Loading branch information
Showing
12 changed files
with
4,541 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,19 +26,25 @@ services: | |
- lms-network | ||
grafana: | ||
container_name: lms-grafana | ||
image: grafana/grafana | ||
build: | ||
context: infra/grafana | ||
dockerfile: Dockerfile | ||
ports: | ||
- "3000:3000" | ||
volumes: | ||
- ./infra/grafana/grafana.ini:/etc/grafana/grafana.ini | ||
environment: | ||
- GF_SECURITY_ADMIN_USER=admin | ||
- GF_SECURITY_ADMIN_PASSWORD=admin | ||
- GF_SECURITY_ADMIN_USER=[email protected] | ||
- GF_SECURITY_ADMIN_PASSWORD=0000 | ||
networks: | ||
- lms-network | ||
prometheus: | ||
container_name: lms-prometheus | ||
image: prom/prometheus | ||
ports: | ||
- "9090:9090" | ||
volumes: | ||
- ./infra/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml | ||
networks: | ||
- lms-network | ||
fuzzer: | ||
|
File renamed without changes.
File renamed without changes.
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,6 @@ | ||
#!/usr/bin/env sh | ||
|
||
RESTler/restler/Restler fuzz \ | ||
--settings lms/fuzzing/settings.json \ | ||
--settings lms/infra/fuzzing/settings.json \ | ||
--grammar_file Compile/grammar.py \ | ||
--dictionary_file Compile/dict.json |
File renamed without changes.
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,2 @@ | ||
FROM grafana/grafana | ||
ADD ./provisioning /etc/grafana/provisioning |
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,2 @@ | ||
[log.console] | ||
level = warn |
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 @@ | ||
apiVersion: 1 | ||
providers: | ||
- name: 'default' | ||
folder: 'default' | ||
type: file | ||
allowUiUpdates: true | ||
updateIntervalSeconds: 30 | ||
options: | ||
path: /etc/grafana/provisioning/dashboards | ||
foldersFromFilesStructure: true |
Oops, something went wrong.