-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add git config to project add readme
- Loading branch information
Showing
3 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# DEEP Java Client | ||
|
||
DEEP is an open source dynamic insight engine based on the Grafana stack. The idea is to allow dynamic collection of | ||
Traces, Metrics, Logs and Snapshots via the Grafana UI. | ||
|
||
## Usage | ||
|
||
To use DEEP simple import the package and start the agent at the earliest point in the code. | ||
|
||
```groovy | ||
import com.intergral.deep.Deep | ||
Deep.start() | ||
``` | ||
|
||
## Examples | ||
|
||
There are a couple of examples [available here](./examples/README.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Examples | ||
|
||
Here we have some examples of usage of the DEEP agent. | ||
|
||
## Simple-App | ||
|
||
This is a very basic app that demonstrates the usage of DEEP. |