123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- type: apache
- status:
- class: receiver
- stability:
- beta: [metrics]
- distributions: [contrib, observiq, sumo]
- codeowners:
- active: [djaglowski]
- resource_attributes:
- apache.server.name:
- description: The name of the Apache HTTP server.
- type: string
- enabled: true
- apache.server.port:
- description: The port of the Apache HTTP server.
- type: string
- enabled: true
- attributes:
- workers_state:
- name_override: state
- description: The state of workers.
- type: string
- enum:
- - busy
- - idle
- cpu_level:
- name_override: level
- description: Level of processes.
- type: string
- enum:
- - self
- - children
- cpu_mode:
- name_override: mode
- description: Mode of processes.
- type: string
- enum:
- - system
- - user
- scoreboard_state:
- name_override: state
- description: The state of a connection.
- type: string
- enum:
- - open
- - waiting
- - starting
- - reading
- - sending
- - keepalive
- - dnslookup
- - closing
- - logging
- - finishing
- - idle_cleanup
- - unknown
- metrics:
- apache.uptime:
- enabled: true
- description: The amount of time that the server has been running in seconds.
- unit: s
- sum:
- value_type: int
- input_type: string
- monotonic: true
- aggregation_temporality: cumulative
- attributes: []
- apache.current_connections:
- enabled: true
- description: The number of active connections currently attached to the HTTP server.
- unit: "{connections}"
- sum:
- value_type: int
- input_type: string
- monotonic: false
- aggregation_temporality: cumulative
- attributes: []
- apache.workers:
- enabled: true
- description: The number of workers currently attached to the HTTP server.
- unit: "{workers}"
- sum:
- value_type: int
- input_type: string
- monotonic: false
- aggregation_temporality: cumulative
- attributes: [workers_state]
- apache.requests:
- enabled: true
- description: The number of requests serviced by the HTTP server per second.
- unit: "{requests}"
- sum:
- value_type: int
- input_type: string
- monotonic: true
- aggregation_temporality: cumulative
- attributes: []
- apache.traffic:
- enabled: true
- description: Total HTTP server traffic.
- unit: By
- sum:
- value_type: int
- monotonic: true
- aggregation_temporality: cumulative
- attributes: []
- apache.cpu.time:
- enabled: true
- description: Jiffs used by processes of given category.
- unit: "{jiff}"
- sum:
- value_type: double
- input_type: string
- monotonic: true
- aggregation_temporality: cumulative
- attributes: [cpu_level, cpu_mode]
- apache.cpu.load:
- enabled: true
- description: Current load of the CPU.
- unit: "%"
- gauge:
- value_type: double
- input_type: string
- attributes: []
- apache.load.1:
- enabled: true
- description: The average server load during the last minute.
- unit: "%"
- gauge:
- value_type: double
- input_type: string
- attributes: []
- apache.load.5:
- enabled: true
- description: The average server load during the last 5 minutes.
- unit: "%"
- gauge:
- value_type: double
- input_type: string
- attributes: []
- apache.load.15:
- enabled: true
- description: The average server load during the last 15 minutes.
- unit: "%"
- gauge:
- value_type: double
- input_type: string
- attributes: []
- apache.request.time:
- enabled: true
- description: Total time spent on handling requests.
- unit: ms
- sum:
- value_type: int
- input_type: string
- monotonic: true
- aggregation_temporality: cumulative
- attributes: []
- apache.scoreboard:
- enabled: true
- description: The number of workers in each state.
- extended_documentation: >-
- The apache scoreboard is an encoded representation of the state of all the server's workers.
- This metric decodes the scoreboard and presents a count of workers in each state.
- Additional details can be found [here](https://metacpan.org/pod/Apache::Scoreboard#DESCRIPTION).
- unit: "{workers}"
- sum:
- value_type: int
- monotonic: false
- aggregation_temporality: cumulative
- attributes: [scoreboard_state]
|