{"id":17710525,"url":"https://github.com/tragiccode/tragiccode-nservicebusservicepulse","last_synced_at":"2026-02-09T23:31:49.732Z","repository":{"id":34293788,"uuid":"170322441","full_name":"TraGicCode/tragiccode-nservicebusservicepulse","owner":"TraGicCode","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-10T11:03:34.000Z","size":65,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-10T12:22:18.330Z","etag":null,"topics":["hacktoberfest","nservicebus","puppet","puppet-module","servicepulse"],"latest_commit_sha":null,"homepage":"","language":"Ruby","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/TraGicCode.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2019-02-12T13:25:45.000Z","updated_at":"2025-02-10T11:03:37.000Z","dependencies_parsed_at":"2024-10-31T00:47:29.605Z","dependency_job_id":null,"html_url":"https://github.com/TraGicCode/tragiccode-nservicebusservicepulse","commit_stats":{"total_commits":9,"total_committers":2,"mean_commits":4.5,"dds":"0.11111111111111116","last_synced_commit":"3e6e2f5a128397da3452d5a2143b498029cb3024"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TraGicCode%2Ftragiccode-nservicebusservicepulse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TraGicCode%2Ftragiccode-nservicebusservicepulse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TraGicCode%2Ftragiccode-nservicebusservicepulse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TraGicCode%2Ftragiccode-nservicebusservicepulse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TraGicCode","download_url":"https://codeload.github.com/TraGicCode/tragiccode-nservicebusservicepulse/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238652309,"owners_count":19507979,"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","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":["hacktoberfest","nservicebus","puppet","puppet-module","servicepulse"],"created_at":"2024-10-25T07:06:27.220Z","updated_at":"2025-10-28T12:31:06.813Z","avatar_url":"https://github.com/TraGicCode.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nservicebusservicepulse\n\n[![Puppet Forge Version](http://img.shields.io/puppetforge/v/tragiccode/nservicebusservicepulse.svg)](https://forge.puppetlabs.com/tragiccode/nservicebusservicepulse)\n[![Puppet Forge Downloads](https://img.shields.io/puppetforge/dt/tragiccode/nservicebusservicepulse.svg)](https://forge.puppetlabs.com/tragiccode/nservicebusservicepulse)\n[![Puppet Forge Pdk Version](http://img.shields.io/puppetforge/pdk-version/tragiccode/nservicebusservicepulse.svg)](https://forge.puppetlabs.com/tragiccode/nservicebusservicepulse)\n\n#### Table of Contents\n\n1. [Description](#description)\n1. [Setup requirements](#setup-requirements)\n    * [Beginning with nservicebusservicepulse](#beginning-with-nservicebusservicepulse)\n1. [Usage - Configuration options and additional functionality](#usage)\n1. [Reference - An under-the-hood peek at what the module is doing and how](#reference)\n1. [Limitations - OS compatibility, etc.](#limitations)\n1. [Contributing](#contributing)\n\n## Description\n\nThe nservicebusservicepulse module installs and manages Service Pulse.\n\nServicePulse is a web application aimed mainly at administrators. It gives a clear, near real-time, high-level overview of how a system is functioning.\n\n### Setup Requirements\n\nThe nservicebusservicepulse module requires the following:\n\n* Puppet Agent 4.7.1 or later.\n* Access to the internet.\n* Chocolatey installed.\n* A Running instance of Service Control.\n* Windows Server 2012/2012R2/2016.\n\n### Beginning with nservicebusservicepulse\n\nTo get started with the nservicebusservicepulse module simply include the following in your manifest:\n\n```puppet\nclass { 'nservicebusservicepulse':\n  package_ensure      =\u003e 'present',\n  service_control_url =\u003e 'http://servicecontrol.tragiccode.com:33333/api/',\n}\n```\n\nThis example downloads, installs, and configures the latest version of servicepulse and points it to an instance of service control on a remote machine.  After running this you should be able to access servicepulse from http://localhost:9090.\n\n**NOTE: By default this module pulls the package from chocolatey (https://chocolatey.org/packages/servicepulse)**\n\n## Usage\n\nAll parameters for the nservicebusservicepulse module are contained within the main `nservicebusservicepulse` class, so for any function of the module, set the options you want. See the common usages below for examples.\n\n### Install a specific version of service pulse from chocolatey\n\n```puppet\nclass { 'nservicebusservicepulse':\n  package_ensure      =\u003e '1.16.0',\n  service_control_url =\u003e 'http://localhost:33333/api/',\n}\n```\n\n**NOTE: We recommend always specifying a specific version so that it's easily viewable and explicit in code.  The default value is present which just grabs whatever version happens to be the latest at the time your first puppet run happened with this code**\n\n### Change Service Pulse Port\n\nThe Default port for servicepulse is 9090 but can be customized as shown below if needed.\n\n```puppet\nclass { 'nservicebusservicepulse':\n  package_ensure =\u003e 'present',\n  port           =\u003e 9091,\n}\n```\n\n### Display of Real-time Monitoring\n\nIn order to consume real-time monitoring of logical endpoints by displaying various key metrics ( Critical Time, Processing Time, Throughput, Queue Length, etc.. ) simply point servicepulse to the url of your service control monitoring instance.\n\n```puppet\nclass { 'nservicebusservicepulse':\n  package_ensure      =\u003e 'present',\n  service_control_url =\u003e 'http://servicecontrol.tragiccode.com:33333/api/',\n  monitoring_url      =\u003e 'http://servicecontrol.tragiccode.com:33633/',\n}\n```\n\n### Enable pending retries view\n\n```puppet\nclass { 'nservicebusservicepulse':\n  package_ensure     =\u003e 'present',\n  show_pending_retry =\u003e true,\n}\n```\n\n**NOTE: Failed messages that are currently in the pending status can be retried, however this feature should be used with care. Retrying pending messages can cause the same message to be processed multiple times. Do not retry a message if it has been processed by the endpoint. In this context \"processed\" includes both the successful handling of the message and the failure state of it being sent to the error queue**\n\n## Reference\n\nSee [REFERENCE.md](REFERENCE.md)\n\n## Limitations\n\n### IIS Hosting Currently not implemented\n\nCurrently hosting service pulse within IIS is currently not implemented and the only supported configuration is hosting via a Windows Service.\n\nThis also means that the ability to have multiple instances of servicepulse on a single machine is also not possible.\n\n## Contributing\n\n1. Fork it ( https://github.com/tragiccode/tragiccode-nservicebusservicepulse/fork )\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create a new Pull Request\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftragiccode%2Ftragiccode-nservicebusservicepulse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftragiccode%2Ftragiccode-nservicebusservicepulse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftragiccode%2Ftragiccode-nservicebusservicepulse/lists"}