Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
YaSuenag committed Nov 24, 2017
1 parent 62a7edc commit 51ee43f
Showing 1 changed file with 26 additions and 17 deletions.
43 changes: 26 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,18 @@ You have to set `true` to `script.painless.regex.enabled` in `elasticsearch.yml`

Sample dashboard uses some Script Fields which scrapes actual value. So you have to define them before you check it.

####### GCTime

| Type | number |
| Format | Duration |
| Input Format | Milliseconds |
| Output Format | Milliseconds |
| Decimal Places | 2 |
* GCTime
* Type
* number
* Format
* Duration
* Input Format
* Milliseconds
* Output Format
* Milliseconds
* Decimal Places
* 2
* Script

```
def msg = doc['message.keyword'].value;
Expand All @@ -153,10 +158,12 @@ if(m.matches()){
}
```

####### JavaHeapUsage

| Type | number |
| Format | Bytes |
* JavaHeapUsage
* Type
* number
* Format
* Bytes
* Script

```
def msg = doc['message.keyword'].value;
Expand All @@ -171,9 +178,10 @@ if(m.matches()){
}
```

####### GCCause

| Type | string |
* GCCause
* Type
* string
* Script

```
def msg = doc['message.keyword'].value;
Expand All @@ -188,9 +196,10 @@ if(m.matches()){
}
```

####### Safepoint

| Type | string |
* Safepoint
* Type
* string
* Script

```
def msg = doc['message.keyword'].value;
Expand Down

0 comments on commit 51ee43f

Please sign in to comment.