{"id":38065483,"url":"https://github.com/cvilsmeier/monibot-go","last_synced_at":"2026-01-16T20:34:28.453Z","repository":{"id":196300362,"uuid":"695478554","full_name":"cvilsmeier/monibot-go","owner":"cvilsmeier","description":"A Go SDK for Monibot - Website, Server and Application Monitoring ","archived":false,"fork":false,"pushed_at":"2025-01-06T14:01:19.000Z","size":102,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-06T15:19:25.811Z","etag":null,"topics":["alerting","application-monitoring","golang","heartbeat-monitor","monitoring","server-monitor","web-monitoring","webapp"],"latest_commit_sha":null,"homepage":"https://monibot.io","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cvilsmeier.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2023-09-23T10:04:23.000Z","updated_at":"2025-01-06T14:00:53.000Z","dependencies_parsed_at":"2023-09-24T19:59:08.801Z","dependency_job_id":"a6c58039-37de-47f6-a933-f208e9ac8ac6","html_url":"https://github.com/cvilsmeier/monibot-go","commit_stats":{"total_commits":61,"total_committers":2,"mean_commits":30.5,"dds":0.2295081967213115,"last_synced_commit":"6a47650ae415481b411413df49c630c1d8e4cf23"},"previous_names":["cvilsmeier/moni-cli","cvilsmeier/moni-go","cvilsmeier/monibot-go"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/cvilsmeier/monibot-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cvilsmeier%2Fmonibot-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cvilsmeier%2Fmonibot-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cvilsmeier%2Fmonibot-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cvilsmeier%2Fmonibot-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cvilsmeier","download_url":"https://codeload.github.com/cvilsmeier/monibot-go/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cvilsmeier%2Fmonibot-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28482267,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: 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":["alerting","application-monitoring","golang","heartbeat-monitor","monitoring","server-monitor","web-monitoring","webapp"],"created_at":"2026-01-16T20:34:27.773Z","updated_at":"2026-01-16T20:34:28.446Z","avatar_url":"https://github.com/cvilsmeier.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# monibot-go\n\n[![GoDoc Reference](https://godoc.org/github.com/cvilsmeier/monibot-go?status.svg)](http://godoc.org/github.com/cvilsmeier/monibot-go)\n[![Build Status](https://github.com/cvilsmeier/monibot-go/actions/workflows/go-linux.yml/badge.svg)](https://github.com/cvilsmeier/monibot-go/actions)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nGolang SDK for https://monibot.io - Website-, Server- and Application Monitoring.\n\nThis module provides a SDK to interact with the Monibot REST API.\nMonibot is a service that monitors your web apps, servers and\napplication metrics, and notifies you if something goes wrong.\n\n\n## Usage\n\n    go get github.com/cvilsmeier/monibot-go\n\n```go\nimport \"github.com/cvilsmeier/monibot-go\"\n\nfunc main() {\n\t// api access requires an apiKey\n\tapiKey := os.Getenv(\"MONIBOT_API_KEY\")\n\t// create new api\n\tapi := monibot.NewApi(apiKey)\n\t// send a watchdog heartbeat\n\tapi.PostWatchdogHeartbeat(\"a749ff35891ecb36\")\n\t// increment a counter metric by 42\n\tapi.PostMetricInc(\"ffe31498bc7193a4\", 42)\n}\n```\n\n\n## Changelog\n\n### v0.2.0\n\n- replace MachineSample DiskReads/Writes (number of sectors) with DiskRead/Write (number of bytes)\n\n### v0.1.1\n\n- add histogram values functions\n\n### v0.1.0\n\n- add histogram metric values\n\n### v0.0.9\n\n- add machine text\n\n### v0.0.8\n\n- fix disk/net usage samples\n\n### v0.0.7\n\n- added netRecv and netSend to machine sample\n\n### v0.0.6\n\n- added diskReads and diskWrites to machine sample\n\n### v0.0.5\n\n- moved moni command line tool into own repo: https://github.com/cvilsmeier/moni\n\n### v0.0.4\n\n- first version\n\n\n## License\n\nMIT License, see LICENSE\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcvilsmeier%2Fmonibot-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcvilsmeier%2Fmonibot-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcvilsmeier%2Fmonibot-go/lists"}