Skip to content
This repository has been archived by the owner on Aug 26, 2021. It is now read-only.

Commit

Permalink
v2.1.19e-7
Browse files Browse the repository at this point in the history
  • Loading branch information
isido993 committed Apr 20, 2019
1 parent a707f92 commit 7591d82
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 7 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
Change log
==========
2.1.19 (2019-04-19)
-------------------

### What's new:

- API monitoring with SLAO added, set `SLAO_API_KEY` env values for `serviceapi` and `webapi` containers in your `docker-compose.yml` file

2.1.8 (2018-05-16)
-------------------

This Release is sponsored by [IFIC.co.uk](http://www.ific.co.uk/), special thanks to Dr. Barry Clark

### What's new:

- Dramatic increase of crawling speed
- Dramatic increase in crawling speed
- Storage consumption is minimal, now you download files directly from crawled fs
- File removal sync -> if file removed from folder it will be marked as removed in Ambar
- Added ability to ignore files by folders, extensions and file names
Expand Down
2 changes: 1 addition & 1 deletion FrontEnd/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ambar-frontend",
"version": "0.0.1",
"version": "2.1.19",
"description": "Ambar Frontend",
"main": "index.js",
"engines": {
Expand Down
Binary file modified Pipeline/requirements.txt
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Version](https://img.shields.io/badge/Version-v2.1.18-brightgreen.svg)](https://ambar.cloud)
[![Version](https://img.shields.io/badge/Version-v2.1.19-brightgreen.svg)](https://ambar.cloud)
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/RD17/ambar/blob/master/License.txt)

:mag: Ambar: Document Search Engine
Expand Down
3 changes: 2 additions & 1 deletion ServiceApi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ambar-serviceapi",
"version": "1.3.0",
"version": "2.1.19",
"description": "Ambar ServiceAPI",
"main": "dist",
"scripts": {
Expand Down Expand Up @@ -45,6 +45,7 @@
"redis": "^2.6.3",
"request": "^2.76.0",
"resource-router-middleware": "^0.5.1",
"slao": "^0.1.3",
"streamifier": "^0.1.1"
},
"devDependencies": {
Expand Down
3 changes: 3 additions & 0 deletions ServiceApi/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import cors from 'cors'
import bodyParser from 'body-parser'
import api from './api'
import config from './config'
import slao from 'slao'
import { ErrorHandlerService, EsProxy, MongoProxy, StorageService } from './services'

const createLogRecord = (type, message) => ({
Expand All @@ -16,6 +17,8 @@ let app = express()

app.server = http.createServer(app)

app.use(slao.init({ appName: 'ambar-serviceapi' }))

app.use(cors({
credentials: true,
origin: true
Expand Down
3 changes: 2 additions & 1 deletion WebApi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ambar-webapi",
"version": "2.1.18",
"version": "2.1.19",
"description": "Ambar WebAPI",
"main": "dist",
"scripts": {
Expand Down Expand Up @@ -44,6 +44,7 @@
"request": "^2.76.0",
"request-promise-native": "^1.0.5",
"resource-router-middleware": "^0.5.1",
"slao": "^0.1.3",
"streamifier": "^0.1.1"
},
"devDependencies": {
Expand Down
3 changes: 3 additions & 0 deletions WebApi/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import cors from 'cors'
import bodyParser from 'body-parser'
import api from './api'
import config from './config'
import slao from 'slao'
import { ErrorHandlerService, EsProxy, StorageService } from './services'

const createLogRecord = (type, message) => ({
Expand All @@ -17,6 +18,8 @@ let app = express()

app.server = http.createServer(app)

app.use(slao.init({ appName: 'ambar-webapi' }))

app.use(cors({
credentials: true,
origin: true
Expand Down
8 changes: 6 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ services:
- redisHost=redis
- redisPort=6379
- rabbitHost=amqp://rabbit
- langAnalyzer=${langAnalyzer}
- langAnalyzer=${langAnalyzer}
- SLAO_HOSTNAME=ambar
- SLAO_API_KEY=
webapi:
depends_on:
serviceapi:
Expand All @@ -96,7 +98,9 @@ services:
- redisHost=redis
- redisPort=6379
- serviceApiUrl=http://serviceapi:8081
- rabbitHost=amqp://rabbit
- rabbitHost=amqp://rabbit
- SLAO_HOSTNAME=ambar
- SLAO_API_KEY=
frontend:
depends_on:
webapi:
Expand Down

0 comments on commit 7591d82

Please sign in to comment.