{"id":8881704,"url":"https://github.com/Mk555/pagerduty-tui","last_synced_at":"2025-08-10T01:32:00.897Z","repository":{"id":232649427,"uuid":"784065926","full_name":"Mk555/pagerduty-tui","owner":"Mk555","description":"Minimalistic terminal UI to manage triggered incidents","archived":false,"fork":false,"pushed_at":"2024-04-10T16:11:57.000Z","size":111,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-04-10T20:58:47.082Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Mk555.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}},"created_at":"2024-04-09T05:51:59.000Z","updated_at":"2024-06-06T07:40:20.476Z","dependencies_parsed_at":"2024-04-15T14:05:57.679Z","dependency_job_id":"c939486d-a272-4008-ab33-5296588b856c","html_url":"https://github.com/Mk555/pagerduty-tui","commit_stats":null,"previous_names":["mk555/pagerduty-tui"],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/Mk555/pagerduty-tui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mk555%2Fpagerduty-tui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mk555%2Fpagerduty-tui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mk555%2Fpagerduty-tui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mk555%2Fpagerduty-tui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mk555","download_url":"https://codeload.github.com/Mk555/pagerduty-tui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mk555%2Fpagerduty-tui/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269663321,"owners_count":24455796,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-09T02:00:10.424Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-05-01T10:06:06.190Z","updated_at":"2025-08-10T01:32:00.480Z","avatar_url":"https://github.com/Mk555.png","language":"Rust","funding_links":[],"categories":["\u003ca name=\"online\"\u003e\u003c/a\u003eOnline search and resources","Table of Contents"],"sub_categories":[],"readme":"# PagerDuty TUI\n\nPagerDuty TUI is a minimalist terminal user interface developed in Rust for managing incidents in PagerDuty. It provides a simple interface to list triggered incidents, acknowledge them, and open them in your default browser.\n\n![Screenshot](DOC/pagerduty-tui-screenshot.png)\n\n## Installation\n\nDownload the last release on [Gihtub Releases](https://github.com/Mk555/pagerduty-tui/releases/latest)\n\n## Shortcuts\n\nHere are the options in the app : \n- `Q/\u003cEsc\u003e` : Quit\n- `\u003cUp\u003e/\u003cDown\u003e/\u003cHome\u003e` : Move in the list of incidents\n- `R` : Refresh the list of incidents\n- `\u003cSpace\u003e` : Acknowledge incident\n- `A` : Acknowledge all the incidents in the service\n- `G` : Trigger the switch to show incidents assigned to everyone, not only the current user\n- `\u003cEnter\u003e` : Open the incident in the default browser\n\n## Update\n\nTo update, run the self update : \n\n`pagerduty-tui update`\n\n\n## Build\n\nTo install Cargo, follow the steps here : \n\n`https://doc.rust-lang.org/cargo/getting-started/installation.html`\n\nThen compile the app :\n\n`cargo build`\n\nThe binary will be stored here : `./target/debug/pagerduty-tui`\n\n## Configuration\n\nPagerDuty TUI requires a configuration file located at `~/.config/pagerduty_tui.yaml`. This configuration file is used to store your PagerDuty API key, which is necessary for accessing PagerDuty incident data.\n\n### Create Pager Duty API Key\n\n![Create PagerDuty API Key](DOC/PagerDutyApiKey.png \"PagerDutyApiKey\")\n\n### Configuration File Format\n\nThe configuration file should be in YAML format and be stored in `~/.config/pagerduty_tui.yaml` \n\nYou need to put you PagerDuty API Key in this value :\n\n```yaml\npagerduty_api_key: \u003cPagerDuty API Key\u003e\npagerduty_domain: \u003cPagerDuty Organization\u003e\n```\n\nReplace `\u003cPagerDuty API Key\u003e` with your actual PagerDuty API key. This key is required for authenticating requests to the PagerDuty API and accessing incident data.\nReplace `\u003cPagerDuty Organization\u003e` with the name of your organization\n\nBy default the refresh time is 30 seconds, but you can change it with the following configuration :\n`refresh_rate: \u003cseconds\u003e`\n\nReplace `\u003cseconds\u003e` by the number of seconds between 2 refresh.\n\n## Usage\n\nAfter installation, you can run PagerDuty TUI by executing the following command in your terminal:\n\n`pagerduty-tui`\n\n## Key Bindings\n\n - `Arrow Up/Down`: Navigate incidents\n - `r`: Update incident list\n - `Enter`: Open incident in default browser\n - `a`: Acknowledge incident\n - `h`: Hide Acknowledged incidents\n - `q`: Quit PagerDuty TUI\n\n### Contributions\n\nContributions to PagerDuty TUI are welcome! If you find any issues or have suggestions for improvements, feel free to open an issue or submit a pull request.\nLicense\n\nThis project is licensed under the GNU Affero General Public License v3.0 - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMk555%2Fpagerduty-tui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FMk555%2Fpagerduty-tui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMk555%2Fpagerduty-tui/lists"}