{"id":37142742,"url":"https://github.com/mattermost/ponos","last_synced_at":"2026-01-14T16:45:15.771Z","repository":{"id":37710012,"uuid":"478599124","full_name":"mattermost/ponos","owner":"mattermost","description":"A ChatOps SRE toil elimination tool","archived":true,"fork":false,"pushed_at":"2023-05-13T10:21:50.000Z","size":66,"stargazers_count":4,"open_issues_count":0,"forks_count":3,"subscribers_count":20,"default_branch":"main","last_synced_at":"2025-09-15T01:29:00.974Z","etag":null,"topics":["chatops","sre","sre-team","toil-elimination"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mattermost.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-04-06T14:37:03.000Z","updated_at":"2024-05-27T09:47:37.000Z","dependencies_parsed_at":"2024-06-19T15:01:51.163Z","dependency_job_id":"cf41f2b1-61d3-4860-800d-4b3311e4017a","html_url":"https://github.com/mattermost/ponos","commit_stats":{"total_commits":8,"total_committers":4,"mean_commits":2.0,"dds":0.375,"last_synced_commit":"36cb9e7c5cac40df08c2e0d686262658182145e5"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/mattermost/ponos","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattermost%2Fponos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattermost%2Fponos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattermost%2Fponos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattermost%2Fponos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mattermost","download_url":"https://codeload.github.com/mattermost/ponos/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattermost%2Fponos/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28426335,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T16:38:47.836Z","status":"ssl_error","status_checked_at":"2026-01-14T16:34:59.695Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["chatops","sre","sre-team","toil-elimination"],"created_at":"2026-01-14T16:45:14.882Z","updated_at":"2026-01-14T16:45:15.767Z","avatar_url":"https://github.com/mattermost.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ponos\n\n## Background\n\n[πόνος](https://en.wikipedia.org/wiki/Ponos) - pain in greek!\n\n## Introduction\n\nPonos is tool which the Mattermost SRE team uses daily to eliminate toil work with ChatOps tools. It includes the followings:\n- Ponos microservice: it's responsible for the business logic of the toil work\n- Ponos Mattemost App: it's the ChatOps based on [Mattermost App Framework](https://developers.mattermost.com/integrate/apps/) which interacts with Ponos service.\n\n## Developing\n\n### Running\n\nFor Ponos HTTP service you need a running provisioner and management of workspaces:\n\n```bash\nexport AWS_REGION=us-east-1\nexport AWS_PROFILE=\"\u003cprofile-for-infra-migrations\u003e\"\nexport PONOS_ACCOUNT_ID=\"\u003caws-account-id-for-testing\u003e\"\nexport PONOS_KMS_KEY=\"\u003caws-kms-id-for-testing\u003e\"\nexport PONOS_PROVISIONER_ADDRESS=\u003cyour-provisioner-url\u003e\nexport PONOS_WORKSPACES_ADDRESS=\u003cyour-workspaces-url\u003e\nexport BUILD_SERVICE=server\nexport PONOS_DB_DSN=\"host=\u003cdb host\u003e user=\u003cdb user\u003e password=\u003cdb user's password\u003e dbname=\u003cdb name\u003e\"\nmake run\n```\n\nFor local development, you can run a local PostgreSQL database via\n\n```bash\ndocker-compose up\n```\n\nby using the following as the databases's DSN:\n\n```\nexport PONOS_DB_DSN=\"host=localhost user=ponos_dev_user password=ponos_dev_password dbname=ponos_dev\"\n```\n\nIn order to run all database migrations locally, you can use:\n\n```\nmake goose COMMAND=\"up\"\n```\n\nwhich uses the goose migration tool under the hood. All goose commands are available.\n\n\nFor Ponos `ChatOps` Mattermost App you need to run the following:\n\n```bash\nexport PONOS_APP_ROOT_URL=http://\u003cyour-ip\u003e:3000\nexport BUILD_SERVICE=app\nmake run\n```\n\n### Testing\n\nRunning tests:\n\n```bash\nmake test\n```\n\n### Docker\n\nDocker build and run locally Ponos Service.\n\n```bash\nmake docker-build\n\ndocker run --rm -p 3000:3000 \\\n    -e PONOS_PROVISIONER_ADDRESS=https://\u003cyour-url\u003e \\\n    -e PONOS_WORKSPACES_ADDRESS=https://\u003cyour-url\u003e  mattermost/ponos-service:dev-local\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmattermost%2Fponos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmattermost%2Fponos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmattermost%2Fponos/lists"}