https://github.com/cloudfoundry-community/logsearch-for-cloudfoundry
A Logsearch addon that customises Logsearch to work with Cloud Foundry data
https://github.com/cloudfoundry-community/logsearch-for-cloudfoundry
bosh-release cloud-foundry elk
Last synced: 3 months ago
JSON representation
A Logsearch addon that customises Logsearch to work with Cloud Foundry data
- Host: GitHub
- URL: https://github.com/cloudfoundry-community/logsearch-for-cloudfoundry
- Owner: cloudfoundry-community
- License: apache-2.0
- Created: 2014-03-01T11:13:22.000Z (almost 12 years ago)
- Default Branch: develop
- Last Pushed: 2021-04-11T14:37:15.000Z (almost 5 years ago)
- Last Synced: 2024-12-06T21:12:38.717Z (about 1 year ago)
- Topics: bosh-release, cloud-foundry, elk
- Language: HTML
- Homepage:
- Size: 8.14 MB
- Stars: 49
- Watchers: 25
- Forks: 57
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# xtend
[![browser support][3]][4]
[](http://github.com/badges/stability-badges)
Extend like a boss
xtend is a basic utility library which allows you to extend an object by appending all of the properties from each object in a list. When there are identical properties, the right-most property takes precedence.
## Examples
```js
var extend = require("xtend")
// extend returns a new object. Does not mutate arguments
var combination = extend({
a: "a",
b: 'c'
}, {
b: "b"
})
// { a: "a", b: "b" }
```
## Stability status: Locked
## MIT Licenced
[3]: http://ci.testling.com/Raynos/xtend.png
[4]: http://ci.testling.com/Raynos/xtend