forked from elastic/beats
-
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 fields for Nginx and Nginx stub metricset
- Loading branch information
KS Chan
committed
May 2, 2016
1 parent
02108ed
commit ed26ba2
Showing
9 changed files
with
260 additions
and
1 deletion.
There are no files selected for viewing
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
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
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
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
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
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
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,5 @@ | ||
nginx: | ||
type: group | ||
description: > | ||
Nginx server status metrics collected from various modules. | ||
fields: |
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,45 @@ | ||
- name: nginx-stubstatus | ||
type: group | ||
description: > | ||
`nginx-stubstatus` contains the metrics that were scraped from the ngx_http_stub_status_module status page. | ||
fields: | ||
- name: hostname | ||
type: keyword | ||
description: > | ||
Nginx hostname | ||
- name: active | ||
type: integer | ||
description: > | ||
The current number of active client connections including Waiting connections. | ||
- name: accepts | ||
type: integer | ||
description: > | ||
The total number of accepted client connections. | ||
- name: handled | ||
type: integer | ||
description: > | ||
The total number of handled client connections. | ||
- name: dropped | ||
type: integer | ||
description: > | ||
The total number of dropped client connections. | ||
- name: requests | ||
type: integer | ||
description: > | ||
The total number of client requests. | ||
- name: current | ||
type: integer | ||
description: > | ||
The current number of client requests. | ||
- name: reading | ||
type: integer | ||
description: > | ||
The current number of connections where nginx is reading the request header. | ||
- name: writing | ||
type: integer | ||
description: > | ||
The current number of connections where nginx is writing the response back to the client. | ||
- name: waiting | ||
type: integer | ||
description: > | ||
The current number of idle client connections waiting for a request. |
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