Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keyvanakbary/victorops
VictorOps client
https://github.com/keyvanakbary/victorops
coffeescript javascript victorops
Last synced: 4 days ago
JSON representation
VictorOps client
- Host: GitHub
- URL: https://github.com/keyvanakbary/victorops
- Owner: keyvanakbary
- License: mit
- Created: 2015-09-13T18:32:08.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-13T18:56:56.000Z (about 9 years ago)
- Last Synced: 2024-10-11T20:48:46.556Z (about 1 month ago)
- Topics: coffeescript, javascript, victorops
- Language: CoffeeScript
- Size: 125 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VictorOps
[![Build Status](https://secure.travis-ci.org/keyvanakbary/victorops.svg?branch=master)](http://travis-ci.org/keyvanakbary/victorops)
Client for [VictorOps](https://victorops.com/).
## Installation
npm install victorops
## Usage
```javascript
var VictorOps = require('victorops');var client = VictorOps.create('SECRET_KEY');
client.alert({
message_type: 'INFO'
state_message: 'test'
}, 'everyone');
```Check out all the options available at [VictorOps API](http://victorops.force.com/knowledgebase/articles/Integration/Alert-Ingestion-API-Documentation/).