Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

4,662

Downloads of v 6.11.0.7218:

23

Last Update:

02 Feb 2024

Package Maintainer(s):

Software Author(s):

  • Sensu Inc

Tags:

sensu-cli sensu cli go sensu-go sensuctl ctl monitor monitoring metric metrics

sensu-cli (Install)

  • 1
  • 2
  • 3

6.11.0.7218 | Updated: 02 Feb 2024

Downloads:

4,662

Downloads of v 6.11.0.7218:

23

Maintainer(s):

Software Author(s):

  • Sensu Inc

sensu-cli (Install) 6.11.0.7218

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install sensu-cli (Install), run the following command from the command line or from PowerShell:

>

To upgrade sensu-cli (Install), run the following command from the command line or from PowerShell:

>

To uninstall sensu-cli (Install), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade sensu-cli -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade sensu-cli -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install sensu-cli
  win_chocolatey:
    name: sensu-cli
    version: '6.11.0.7218'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'sensu-cli' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '6.11.0.7218'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller sensu-cli
{
    Name     = "sensu-cli"
    Version  = "6.11.0.7218"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'sensu-cli':
  ensure   => '6.11.0.7218',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 02 Feb 2024.

Description

Sensu CLI tools command-line tools to work with Sensu Go (e.g. sensuctl).


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$fileLocation   = Join-Path $toolsDir "sensu-go-cli_${env:chocolateyPackageVersion}_en-US.x86.msi"
$file64Location = Join-Path $toolsDir "sensu-go-cli_${env:chocolateyPackageVersion}_en-US.x64.msi"

$packageArgs = @{
  packageName   = $env:ChocolateyPackageName
  unzipLocation = $toolsDir
  fileType      = 'msi'
  file          = $fileLocation
  file64        = $file64Location

  softwareName  = 'Sensu CLI'

  silentArgs    = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
  validExitCodes= @(0, 3010, 1641)
}

Install-ChocolateyInstallPackage @packageArgs
tools\LICENSE.txt

From: https://sensu.io/sensu-license

Sensu License

Master License Agreement
This Sensu Master License Agreement (this “Agreement”) is entered into by and between Sensu, Inc., with a business address of P.O. Box 8308, Portland, Oregon 97207 (“Sensu Inc”), and you or the entity you represent (“Customer”). This Agreement is effective as of the date it is accepted by Customer (the “Effective Date”).

This Agreement governs Customer’s download, installation, and use of the Sensu Go software (the “Software”). If you are entering this Agreement on behalf of a company or other legal entity, you represent that you have the authority to bind the entity, its affiliates, and all users who access or use the Software on behalf of the entity. Terms and Conditions

1. License
Sensu Inc grants Customer a nonexclusive license to download, install, and use the Software, subject to the terms and conditions of this Agreement.

2. Documentation
Documentation in printed or electronic form, if any, is subject to the same terms applicable to the Software.

3. Open-Source Components
The Software includes Sensu Go (https://github.com/sensu/sensu-go), which is governed by the MIT open-source license (the “MIT License”), a copy of which is attached as Exhibit A. Any use of Sensu Go by Customer will be governed by, and subject to, the terms and conditions of the MIT License.

4. Software Updates
All Software modifications, upgrades, and releases (“Software Updates”) provided to Customer under this Agreement are to be considered part of the Software, and may be downloaded, installed, and used by Customer subject to the terms and conditions of this Agreement. Nothing in this Agreement transfers title to any Software Updates to Customer.

5. Ownership of Software
Sensu Inc owns all right, title, and interest, including all copyright, trademark, patent and any other proprietary and intellectual property rights embodied in the Software, including the source code, subject only to the rights of third parties in Open-Source Components and the limited license granted under this Agreement.

6. Copies and Modifications
The Software is protected by copyright laws. Except as expressly permitted under this Agreement, and subject to Section 3 with respect to Open-Source Components, Customer may not copy (including copying onto a public network), use, modify, display, sublicense, rent, sell, or distribute the Software or its source code. Customer may copy the Software (a) as necessary for the purpose of using it as permitted under this Agreement; and (b) for backup purposes.

7. Internal Use Only
Customer is not permitted to offer services to third parties from use of the Software. For more information on commercial licensing for managed service providers, please contact Sensu at [email protected].

8. No Reverse Engineering
Subject to Section 3 with respect to Open-Source Components, Customer may not disassemble, decompile, reverse engineer, or decrypt the Software.

9. Proprietary Notices
Customer may not remove, change, or obscure any copyright, trademark, or other proprietary notices in the Software or on any associated media. Customer must include the notices in any authorized copies.

10. Confidentiality
10.1. Trade Secret Status
Customer acknowledges that the Software contains valuable trade secrets of Sensu Inc, the disclosure of which would cause irreparable harm to Sensu Inc.

10.2. Confidential Information
Customer will keep confidential Software source code (other than the source code of Open-Source Components), non-public details of operation or implementation of the Software, the financial terms of this Agreement, and any other information that Sensu Inc designates as confidential.

10.3. Permitted Disclosure
The parties may disclose to other potential customers of Sensu Inc the fact that Customer is using the Software, the general functions provided by the Software, and Customer’s general level of satisfaction with the Software.

10.4. Reporting
Customer will immediately report to Sensu Inc any threatened or actual unauthorized use or disclosure of the Software or other confidential information that comes to Customer’s attention.

11. Support Services
Sensu Inc will not provide any support services for the Software.

12. Informing Staff
Customer will inform its employees of the obligations stated in this Agreement. Customer is responsible for any breach of the obligations by its employees, contractors, and consultants.

13. Term/Termination
13.1. Termination by Sensu Inc
Sensu Inc may terminate the license upon written notice for Customer’s failure to comply with this Agreement, or Customer’s failure to comply with any other written agreement between the parties.

13.2. Effect of Termination
Upon termination, Customer must immediately return or destroy the Software, together with all copies, adaptations and merged portions in any form. Customer will certify under oath the extent to which Customer has complied with this section, at Sensu Inc’s request. On the effective date of termination, all amounts then owned to Sensu Inc will become immediately due and payable.

14. Export Requirements
Customer may not export or re-export the Software in violation of any applicable laws or regulations.

15. Disclaimer of Warranties
THE SOFTWARE, DOCUMENTATION, AND SERVICES PROVIDED BY SENSU INC ARE PROVIDED “AS IS.” SENSU INC MAKES NO EXPRESS OR IMPLIED WARRANTIES, SUCH AS WARRANTIES OF PERFORMANCE, NONINFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. Although Sensu Inc believes the Software to be reliable for business use, Sensu Inc does not warrant that operation of the Software will be uninterrupted or error-free. Sensu Inc does not warrant that its Services or the Software Updates will result in an improvement to the Software, a solution to any problem Customer may have with the Software, or error-free operation of the Software. Sensu Inc will not have any responsibility or obligation in the event of an infringement or other intellectual property claim made against Customer due to Customer’s use of the Software.

16. Responsibility for Use
The Software is provided as a tool for Customer to use as Customer sees fit in its business. Customer is solely responsible for understanding the limitations of the Software. Sensu Inc is not responsible for any errors or omissions or for the results obtained from the use of the Software. Customer will indemnify Sensu Inc against any loss, liability, or costs (including reasonable attorney fees at trial or in any other proceeding) incurred on account of its use of the Software, whether or not attributable to the Software’s operation. Customer shall not use the Software to further discriminatory, fraudulent, or illegal activities. Customer acknowledges that this section is an important term of this Agreement, that it permits Sensu Inc to provide the Software at a reasonable price, and that Sensu Inc would not provide the Software without this section. CUSTOMER IS RESPONSIBLE FOR PROTECTING ITS DATA USED IN CONNECTION WITH THE SOFTWARE.

17. Limitation of Liability
SENSU INC’S LIABILITY TO CUSTOMER ON ANY CLAIM FOR DAMAGES ARISING OUT OF OR RELATED TO THIS AGREEMENT SHALL BE LIMITED TO DIRECT DAMAGES AND SHALL NOT EXCEED THE AMOUNT OF THE FEES PAID BY CUSTOMER UNDER THIS AGREEMENT. SENSU INC SHALL HAVE NO LIABILITY WHATSOEVER FOR SPECIAL, CONSEQUENTIAL, OR PUNITITVE DAMAGES (INCLUDING LOSS PROFITS OR REVENUE) OF CUSTOMER OR ANY THIRD PARTY, EVEN IF SENSU INC HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. CUSTOMER MAY BRING NO ACTION, REGARDLESS OF FORM, ARISING OUT OF THE SOFTWARE OR SERVICES PROVIDED HEREUNDER MORE THAN ONE (1) YEAR AFTER THE ACCRUAL OF THE CLAIM ON WHICH THE CAUSE OF ACTION IS BASED. THE LIMITATION IN THIS PARAGRAPH DOES NOT APPLY TO SENSU INC’S INDEMNIFICATION OBLIGATIONS PURSUANT TO SECTION 22.

18. Transfer/Assignment
Subject to prior approval by Sensu Inc, Customer may transfer the Software to a single recipient on a permanent basis provided Customer retains no copies of the Software and the recipient agrees in writing to the terms and conditions of this Agreement. Sensu Inc may assign this Agreement at any time without prior consent of Customer.

19. Attorney Fees
In any arbitration or litigation relating to this Agreement, the prevailing party will be entitled to recover all reasonable expenses of arbitration or litigation, including reasonable attorney fees at trial and on any appeal or petition for review, as determined by the judge or arbitrator.

20. Counterparts
This agreement may be executed in one or more counterparts. Transmission of a signed copy by fax will have the same effect as delivery of the signed original.

21. Force Majeure
Sensu Inc will not be responsible for delays or failures in performance resulting from causes beyond its control. Such causes include without limitation acts of God, war, riot, earthquake, embargo, acts of civil or military authorities, fire, flood, accident, strike, and shortages of transportation, facilities, fuel, energy, labor or material and any breakdown or interruption in service of communications, telecommunications, Internet, satellite, or any other medium of contact currently used or used in the future.

22. Governing Law; Venue
This agreement is governed by Oregon law, excluding choice-of-law provisions and excluding the United Nations Convention on Contracts for the International Sale of Goods. The state and federal courts of Oregon will have exclusive jurisdiction over the parties with respect to any dispute or controversy between them arising under or in connection with this Agreement. Venue for purposes of litigation will be Multnomah County, Oregon, and the parties waive all claims that such a forum is inconvenient or that a more convenient forum can be found.

23. Survival
Provisions regarding responsibility for use, rights in Software, and limitations, and all other provisions that could reasonably be expected to survive termination, will remain in effect following termination or expiration of this Agreement.

24. Independent Contractor Status
Sensu Inc is an independent contractor and not an employee or agent of Customer. Sensu Inc employees will not be eligible for any Customer-provided employee benefits.

25. Modification and Waiver
No modification or waiver of the provisions of this Agreement will be binding unless made in writing and signed by both parties. NO DIFFERENT OR ADDITIONAL TERMS ON ANY PURCHASE ORDER OR OTHER FORM UTILIZED BY CUSTOMER IN CONNECTION WITH THE SOFTWARE OR SENSU INC’S SERVICES WILL BE PART OF THIS AGREEMENT OR OTHERWISE BINDING ON SENSU INC.

26. Notices
Notices to Sensu Inc must be given in writing or by electronic means to Sensu Inc, PO Box 8308, Portland, OR 97207, [email protected]. Notices to Customer must be given in writing or by electronic means to the contact information provided by Customer as part of the registration process. A party may change its address, e-mail address, or fax number for notices by giving the other party notice of the change. Notice will be deemed given at the earliest of (a) the date received; (b) if sent by overnight courier, the next business day; or (c) if sent by U.S. certified mail, return receipt requested, the fourth (4th) following business day.

27. Severability
If any restriction in this Agreement exceeds that permitted under applicable law, it is to be deemed modified to include the maximum permissible restriction. If any provision is nonetheless held unenforceable in any jurisdiction, the enforceability of this Agreement in any other jurisdiction and the enforceability of the remaining provisions in that jurisdiction will not be affected.

NOTE: These Sensu Master License Agreement were last updated on December 5, 2018. Prior versions can be obtained by contacting Sensu.

EXHIBIT A: MIT LICENSE
The MIT License (MIT)
Copyright (c) 2017 Sensu Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
tools\PERMISSION.pdf
md5: 4226E53A6EF0594E68BFE6B1B016B6F6 | sha1: 7BDCB445F2377C6BD0281501BE5AF52072C35777 | sha256: F65EDA52481B66BEB234087540C51D3D42A260F9D464B2F806DE63927CBD9E0B | sha512: F7301F631A3A423F3EB42CD442A9CB2E7B03C0CA8BC638A5CDD7D602AA8FA40168C35192F9F435A8B34C192EF68E7F786170BFA2516B9769C5B9ACBFA366BFB7
tools\sensu-go-cli_6.11.0.7218_en-US.x64.msi
md5: 66ED963DFB0B6A326D5B1AC34EE82821 | sha1: 6E1194509F0243F106C99BAE3D29EB3E0D631EEF | sha256: 519BDBE8A6D0FC4FB7AE48A183D79E373D898865AFBFFE669A8C73881E68F9B7 | sha512: F078EC81130B3381E6557299F01C151E9BAD6B69354AD8E397A24EBEDB762A87C409E95EF29995AA8AF00A2EE4C5F2DBF3322652406FEE2AA8931A9DFCC42EF6
tools\sensu-go-cli_6.11.0.7218_en-US.x86.msi
md5: D5CA1295F5C048A08158040EC1277A32 | sha1: CD708B581932B182BE7561C3405B783F5A384657 | sha256: BB2879A8419B109AC594F6CF342D69AC9C5AD09E6F2E815AF8614E1143ECCF10 | sha512: 3B780ECB65ED8705E6D69D21214E93D53166E4B24DB1FB679090D73A7E88E613EC0790C1494752A9ADA2E74919B9561EA481D1F76028CCA07A55D886D9CC2394
tools\VERIFICATION.TXT
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

We are the authors of Sensu.

The installer can been downloaded from our official download link listed on
<https://sensu.io/products/downloads> and can be verified like this:

1. Download the MSI installer(s) from https://sensu.io/products/downloads.
2. You can use one of the following methods to obtain the checksum
  - Use powershell function 'Get-Filehash'
  - Use chocolatey utility 'checksum.exe'

  sha256 checksums:
  checksum32: BB2879A8419B109AC594F6CF342D69AC9C5AD09E6F2E815AF8614E1143ECCF10
  checksum64: 519BDBE8A6D0FC4FB7AE48A183D79E373D898865AFBFFE669A8C73881E68F9B7

File 'LICENSE.txt' is obtained from <https://sensu.io/sensu-license>

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
sensu-cli (Install) 6.10.0.7172 86 Friday, May 26, 2023 Approved
sensu-cli (Install) 6.9.2.7020 82 Wednesday, March 8, 2023 Approved
sensu-cli (Install) 6.9.1.6928 35 Thursday, December 1, 2022 Approved
sensu-cli (Install) 6.9.0.6863 44 Wednesday, November 2, 2022 Approved
sensu-cli (Install) 6.8.2.6788 40 Friday, October 7, 2022 Approved
sensu-cli (Install) 6.8.1.6707 32 Tuesday, September 13, 2022 Approved
sensu-cli (Install) 6.8.0.6692 44 Monday, August 29, 2022 Approved
sensu-cli (Install) 6.7.4.6494 50 Friday, July 15, 2022 Approved
sensu-cli (Install) 6.7.3.6428 38 Thursday, July 7, 2022 Approved
sensu-cli (Install) 6.7.2.6283 57 Thursday, May 12, 2022 Approved
sensu-cli (Install) 6.7.1.6231 58 Friday, April 29, 2022 Approved
sensu-cli (Install) 6.7.0.6196 45 Friday, April 22, 2022 Approved
sensu-cli (Install) 6.6.6.5787 69 Thursday, February 17, 2022 Approved
sensu-cli (Install) 6.6.5.5744 63 Friday, February 4, 2022 Approved
sensu-cli (Install) 6.6.4.5671 51 Wednesday, January 26, 2022 Approved
sensu-cli (Install) 6.6.3.5588 57 Friday, December 17, 2021 Approved
sensu-cli (Install) 6.6.2.5538 56 Wednesday, December 8, 2021 Approved
sensu-cli (Install) 6.6.1.5514 52 Monday, November 29, 2021 Approved
sensu-cli (Install) 6.6.0.5502 59 Friday, November 26, 2021 Approved
sensu-cli (Install) 6.5.5.5456 56 Monday, November 22, 2021 Approved
sensu-cli (Install) 6.5.4.5391 54 Saturday, October 30, 2021 Approved
sensu-cli (Install) 6.5.3.5384 50 Friday, October 29, 2021 Approved
sensu-cli (Install) 6.5.2.5376 68 Friday, October 29, 2021 Approved
sensu-cli (Install) 6.5.1.5325 61 Wednesday, October 20, 2021 Approved
sensu-cli (Install) 6.5.0.5266 60 Thursday, October 14, 2021 Approved
sensu-cli (Install) 6.4.3.5016 59 Wednesday, September 1, 2021 Approved
sensu-cli (Install) 6.4.2.5005 61 Tuesday, August 31, 2021 Approved
sensu-cli (Install) 6.4.1.4969 68 Wednesday, August 25, 2021 Approved
sensu-cli (Install) 6.4.0.4826 68 Monday, June 28, 2021 Approved
sensu-cli (Install) 6.3.0.4680 74 Wednesday, May 26, 2021 Approved
sensu-cli (Install) 6.2.7.4449 89 Friday, April 2, 2021 Approved
sensu-cli (Install) 6.2.6.4389 77 Friday, March 26, 2021 Approved
sensu-cli (Install) 6.2.5.4040 90 Tuesday, February 2, 2021 Approved
sensu-cli (Install) 6.2.4.4013 82 Thursday, January 28, 2021 Approved
sensu-cli (Install) 6.2.3.3986 77 Thursday, January 21, 2021 Approved
sensu-cli (Install) 6.2.2.3967 78 Friday, January 15, 2021 Approved
sensu-cli (Install) 6.2.1.3945 88 Monday, January 11, 2021 Approved
sensu-cli (Install) 6.2.0.3888 108 Friday, December 18, 2020 Approved
sensu-cli (Install) 6.1.4.3866 82 Wednesday, December 16, 2020 Approved
sensu-cli (Install) 6.1.3.3642 128 Tuesday, November 10, 2020 Approved
sensu-cli (Install) 6.1.2.3565 101 Monday, November 9, 2020 Approved
sensu-cli (Install) 6.0.0.3003 122 Tuesday, August 11, 2020 Approved
sensu-cli (Install) 5.21.5.75085 78 Friday, March 26, 2021 Approved
sensu-cli (Install) 5.21.4.71057 68 Tuesday, March 9, 2021 Approved
sensu-cli (Install) 5.21.3.42094 99 Wednesday, October 14, 2020 Approved
sensu-cli (Install) 5.21.2.32982 109 Monday, August 31, 2020 Approved
sensu-cli (Install) 5.21.1.25872 110 Wednesday, August 5, 2020 Approved
sensu-cli (Install) 5.21.0.14262 111 Monday, June 15, 2020 Approved
sensu-cli (Install) 5.20.2.12959 122 Tuesday, May 26, 2020 Approved
sensu-cli (Install) 5.20.1.12427 98 Friday, May 15, 2020 Approved
sensu-cli (Install) 5.20.0.12118 104 Wednesday, May 13, 2020 Approved
sensu-cli (Install) 5.19.3.11744 120 Monday, May 4, 2020 Approved
sensu-cli (Install) 5.19.2.11421 103 Monday, April 27, 2020 Approved
sensu-cli (Install) 5.19.1.10989 109 Monday, April 13, 2020 Approved
sensu-cli (Install) 5.19.0.10682 132 Monday, March 30, 2020 Approved
sensu-cli (Install) 5.18.1.9930 136 Tuesday, March 10, 2020 Approved
sensu-cli (Install) 5.17.0.9112 155 Tuesday, January 28, 2020 Approved

This package has no dependencies.

Discussion for the sensu-cli (Install) Package

Ground Rules:

  • This discussion is only about sensu-cli (Install) and the sensu-cli (Install) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or sensu-cli (Install), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus