Skip to content

Commit af5f3b4

Browse files
committed
add readme
1 parent 0d62e52 commit af5f3b4

File tree

2 files changed

+28
-27
lines changed

2 files changed

+28
-27
lines changed

.prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"printWidth": 100,
3+
"singleQuote": true
4+
}

README.md

+24-27
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,34 @@
1-
Meteor Development Group has bought Kadira APM from Arunoda. We have made the original Kadira code available under the MIT License in this GitHub repository.
1+
# APM
22

3-
As the code we're running in Galaxy has diverged, we will not be running this repository as an open source project. We've started a conversation with potential maintainers of a community fork.
3+
This project reduces the original Kadira APM to a single Meteor project.
4+
Most of the original features are working (like Slack alerts), but there is still a lot of work.
45

5-
Arunoda uses the name Kadira for other projects and still owns the trademark on the "Kadira" name. Arunoda requests that public forks should choose a new name.
6+
## Running it
67

7-
# Kadira APM
8-
9-
This is a set of components you need to run Kadira in your system.
10-
11-
> The following instructions are not production deployment configurations. It's meant for running for testing.
12-
13-
## Initial Setup
14-
15-
Open `init-shell.sh` and update configurations.
16-
Make sure to set fresh DB configurations before getting started.
17-
18-
Make the script executable.
19-
```sh
20-
chmod +x init-shell.sh
8+
```
9+
cd apm
10+
meteor npm i
11+
meteor
2112
```
2213

23-
Then run following three components by visiting their directories:
24-
25-
* kadira-engine
26-
* kadira-rma
27-
* kadira-ui
28-
29-
## Connecting with Kadira Agent
14+
This opens the following ports:
3015

31-
You you are ready to connect your app into Kadira. Since we are running with a custom setup, you need to export following environment variable before using Kadira in your app:
16+
* UI: 3000
17+
* RMA: 11011
18+
* API: 7007
3219

20+
## Meteor settings
3321
```
34-
export KADIRA_OPTIONS_ENDPOINT=http://localhost:11011
22+
"kadira": {
23+
"appId": "...",
24+
"appSecret": "...",
25+
"options": {
26+
"endpoint": "http://localhost:11011"
27+
}
28+
},
3529
```
3630

37-
> Here's we've assumed http://localhost:11011 as the kadira-engine URL.
31+
## Changes to original Kadira
32+
33+
* Added MongoDB indexes
34+
* Remove raw data after processed

0 commit comments

Comments
 (0)