{"id":16990397,"url":"https://github.com/amingolmahalle/monitoring","last_synced_at":"2026-04-14T00:31:18.098Z","repository":{"id":169559906,"uuid":"395069874","full_name":"amingolmahalle/Monitoring","owner":"amingolmahalle","description":"Monitoring  System By Prometheus and Grafana ","archived":false,"fork":false,"pushed_at":"2021-08-11T21:42:35.000Z","size":74,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-22T03:25:13.274Z","etag":null,"topics":["alertmanager","grafana","metrics","monitoring","prometeheus","sqlserver"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/amingolmahalle.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-08-11T17:36:01.000Z","updated_at":"2023-05-20T20:26:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"66c60db7-6a28-435c-b560-1676ee8d387b","html_url":"https://github.com/amingolmahalle/Monitoring","commit_stats":null,"previous_names":["amingolmahalle/monitoring"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/amingolmahalle/Monitoring","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amingolmahalle%2FMonitoring","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amingolmahalle%2FMonitoring/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amingolmahalle%2FMonitoring/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amingolmahalle%2FMonitoring/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amingolmahalle","download_url":"https://codeload.github.com/amingolmahalle/Monitoring/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amingolmahalle%2FMonitoring/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31776846,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T00:11:49.126Z","status":"ssl_error","status_checked_at":"2026-04-14T00:10:29.837Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["alertmanager","grafana","metrics","monitoring","prometeheus","sqlserver"],"created_at":"2024-10-14T03:09:54.699Z","updated_at":"2026-04-14T00:31:18.078Z","avatar_url":"https://github.com/amingolmahalle.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Monitoring\nMonitoring System By Prometheus and Grafana. \n\nwe use Below queryExporter in this sample:\nhttps://github.com/albertodonato/query-exporter\n\nthe database we use in example called \u003cb\u003eSqlServer\u003c/b\u003e.\nIn this example, we want to monitor \u003cb\u003eticket purchase orders\u003c/b\u003e.\n\nTo get started , Please Run Below Scripts in \u003cb\u003eSql Server Managment\u003c/b\u003e:\n\u003cpre\u003e\u003ccode\u003e\n  create table dbo.BookState\n(\n    BookStateId int          not null PRIMARY KEY,\n    Title       nvarchar(30) not null\n)\ngo\n\nINSERT INTO dbo.BookState (BookStateId, Title) VALUES (1, 'New');\nINSERT INTO dbo.BookState (BookStateId, Title) VALUES (2, 'ReserveFailed');\nINSERT INTO dbo.BookState (BookStateId, Title) VALUES (3, 'Reserved');\nINSERT INTO dbo.BookState (BookStateId, Title) VALUES (4, 'IssueFailed');\nINSERT INTO dbo.BookState (BookStateId, Title) VALUES (5, 'Issued');\n\ngo\ncreate table dbo.ModuleType\n(\n    ModuleTypeId int          not null primary key,\n    Title        nvarchar(30) not null\n)\n\ngo\n\nINSERT INTO dbo.ModuleType (ModuleTypeId, Title) VALUES (1, 'Flight');\nINSERT INTO dbo.ModuleType (ModuleTypeId, Title) VALUES (2, 'Hotel');\nINSERT INTO dbo.ModuleType (ModuleTypeId, Title) VALUES (3, 'Train');\nINSERT INTO dbo.ModuleType (ModuleTypeId, Title) VALUES (4, 'Bus');\n\u003c/code\u003e\u003c/pre\u003e\n\nnow run this command from project root directory:\n\n\u003ccode\u003esudo docker-compose up -d \u003c/code\u003e\n\nafter command successfully executed.check all services are running.\n\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"http://localhost:9090/\" rel=\"nofollow\"\u003ePrometheus\u003c/a\u003e  =\u0026gt; \u003ca href=\"http://localhost:9090/\" rel=\"nofollow\"\u003ehttp://localhost:9090/\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"http://localhost:3000/\" rel=\"nofollow\"\u003eGrafana\u003c/a\u003e =\u0026gt; \u003ca href=\"http://localhost:3000/\" rel=\"nofollow\"\u003ehttp://localhost:3000/\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003eusername: admin password: admin\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"http://localhost:9093/\" rel=\"nofollow\"\u003eAlert Manager\u003c/a\u003e =\u0026gt; \u003ca href=\"http://localhost:9093/\" rel=\"nofollow\"\u003ehttp://localhost:9093/\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"http://localhost:9100/\" rel=\"nofollow\"\u003eNode Exporter\u003c/a\u003e\u003ca href=\"http://localhost:9100/\" rel=\"nofollow\"\u003ehttp://localhost:9100/\u003c/a\u003e =\u0026gt; \u003c/li\u003e\n\u003cli\u003e\u003ca href=\"http://localhost:8080/containers/\" rel=\"nofollow\"\u003eGoogle cAdvisor\u003c/a\u003e =\u0026gt; \u003ca href=\"http://localhost:8080/containers/\" rel=\"nofollow\"\u003ehttp://localhost:8080/containers/\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\nat the end call \u003ca href=\"http://localhost:3000\" rel=\"nofollow\"\u003ethis link\u003c/a\u003e for show dashboard in grafana.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famingolmahalle%2Fmonitoring","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famingolmahalle%2Fmonitoring","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famingolmahalle%2Fmonitoring/lists"}