{"id":43721569,"url":"https://github.com/theapsgroup/steampipe-plugin-freshservice","last_synced_at":"2026-02-05T08:10:27.456Z","repository":{"id":39968003,"uuid":"444858740","full_name":"theapsgroup/steampipe-plugin-freshservice","owner":"theapsgroup","description":"Use SQL to instantly query FreshService tickets, assets and more. Open source CLI. No DB required.","archived":false,"fork":false,"pushed_at":"2023-10-02T08:30:06.000Z","size":1184,"stargazers_count":5,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-06-19T13:47:10.128Z","etag":null,"topics":["freshservice","golang","postgres","postgresql","postgresql-fdw","sql","steampipe","steampipe-plugin"],"latest_commit_sha":null,"homepage":"https://hub.steampipe.io/plugins/theapsgroup/freshservice","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/theapsgroup.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2022-01-05T15:43:07.000Z","updated_at":"2023-10-04T08:03:13.000Z","dependencies_parsed_at":"2024-06-19T13:34:25.038Z","dependency_job_id":"ab7fb618-d1db-42e1-8ccd-b14926947c72","html_url":"https://github.com/theapsgroup/steampipe-plugin-freshservice","commit_stats":{"total_commits":62,"total_committers":4,"mean_commits":15.5,"dds":"0.14516129032258063","last_synced_commit":"ce091604bfd9e2b0bc0996cfed2078b890c2a867"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/theapsgroup/steampipe-plugin-freshservice","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theapsgroup%2Fsteampipe-plugin-freshservice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theapsgroup%2Fsteampipe-plugin-freshservice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theapsgroup%2Fsteampipe-plugin-freshservice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theapsgroup%2Fsteampipe-plugin-freshservice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/theapsgroup","download_url":"https://codeload.github.com/theapsgroup/steampipe-plugin-freshservice/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theapsgroup%2Fsteampipe-plugin-freshservice/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29116452,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T05:31:32.482Z","status":"ssl_error","status_checked_at":"2026-02-05T05:31:29.075Z","response_time":65,"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":["freshservice","golang","postgres","postgresql","postgresql-fdw","sql","steampipe","steampipe-plugin"],"created_at":"2026-02-05T08:10:26.818Z","updated_at":"2026-02-05T08:10:27.450Z","avatar_url":"https://github.com/theapsgroup.png","language":"Go","readme":"![image](https://github.com/theapsgroup/steampipe-plugin-freshservice/raw/main/docs/freshservice-social-graphic.png)\r\n# FreshService plugin for Steampipe\r\n\r\nUse SQL to query information including Tickets, Agents, Assets and more from FreshService.\r\n\r\n- **[Get started →](https://hub.steampipe.io/plugins/theapsgroup/freshservice)**\r\n- Documentation: [Table definitions \u0026 examples](https://hub.steampipe.io/plugins/theapsgroup/freshservice/tables)\r\n- Community: [Join #steampipe on Slack →](https://turbot.com/community/join)\r\n- Get involved: [Issues](https://github.com/theapsgroup/steampipe-plugin-freshservice/issues)\r\n\r\n## Quick start\r\n\r\nInstall the plugin with [Steampipe](https://steampipe.io):\r\n\r\n```shell\r\nsteampipe plugin install theapsgroup/freshservice\r\n```\r\n\r\nSetup the configuration:\r\n\r\n```shell\r\nvi ~/.steampipe/config/freshservice.spc\r\n```\r\n\r\nor set the following Environment Variables\r\n\r\n- `FRESHSERVICE_DOMAIN : The friendly sub-domain at which your instance is deployed (example: `my-corp` if your instance is `https://my-corp.freshservice.com`)\r\n- `FRESHSERVICE_TOKEN` : The API Key / Token to use.\r\n\r\nRun a query:\r\n\r\n```sql\r\nselect\r\n  id,\r\n  name,\r\n  active,\r\n  category\r\nfrom\r\n  freshservice_sla_policy;\r\n```\r\n\r\n## Developing\r\n\r\nPrerequisites:\r\n\r\n- [Steampipe](https://steampipe.io/downloads)\r\n- [Golang](https://golang.org/doc/install)\r\n- [FreshService](https://freshservice.com/)\r\n\r\nClone:\r\n\r\n```sh\r\ngit clone https://github.com/theapsgroup/steampipe-plugin-freshservice.git\r\ncd steampipe-plugin-freshservice\r\n```\r\n\r\nBuild, which automatically installs the new version to your `~/.steampipe/plugins` directory:\r\n\r\n```shell\r\nmake\r\n```\r\n\r\nConfigure the plugin:\r\n\r\n```\r\ncp config/* ~/.steampipe/config\r\nvi ~/.steampipe/config/freshservice.spc\r\n```\r\n\r\nTry it!\r\n\r\n```\r\nsteampipe query\r\n\u003e .inspect freshservice\r\n```\r\n\r\nFurther reading:\r\n\r\n- [Writing plugins](https://steampipe.io/docs/develop/writing-plugins)\r\n- [Writing your first table](https://steampipe.io/docs/develop/writing-your-first-table)\r\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheapsgroup%2Fsteampipe-plugin-freshservice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheapsgroup%2Fsteampipe-plugin-freshservice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheapsgroup%2Fsteampipe-plugin-freshservice/lists"}