项目作者: bazzline

项目描述 :
free as in freedom apache status parser
高级语言: PHP
项目地址: git://github.com/bazzline/php_component_apache_status_parser.git
创建时间: 2017-04-11T22:27:34Z
项目社区:https://github.com/bazzline/php_component_apache_status_parser

开源协议:GNU Lesser General Public License v3.0

下载


Full Stop

I still like the idea but there is currently no use case to develop it anymore.

Apache Server Status Parser Component for PHP

This project aims to deliver an easy to use component to read the apache server status for a configured list of hosts and gain information about that.

This component is relying on the apache mod_status and the undocumented query “?notable“ (“?auto” does not contain information about the pid).

The build status of the current master branch is tracked by Travis CI:
Build Status
Latest stable

The scrutinizer status is:
code quality

Take a look on openhub.net.

The current change log can be found here.

Project Goals

  • provides simple access to process information (deals with strings)
  • provides detailed access to all information (building a lot of objects)

Why?

Let me give you an scenario I got on my desk and had to solve it.

Given

As a maintainer of an infrastructure with multiple apache HTTP servers, I need to know if a given process (identified by its pid, a infrastructure wide unique identifier and its uri) is still running or not.
Sometimes I know the IP Address of the server where process is running, mostly all I have is a pid, the unique identifier and the uri.
And finally, it is allowed to use the apache server status but no ssh command execution.

How To Use

Because of the shipped with builders, it is really easy to getting started with.
If you want to use your application instance pooling, use the builders as manual how to plumper things together.

There are two different kind of builders, one (AbstractStorageBuilder) gives you the control over where to fetch and how much to fetch information.
The second one (ParserBuilder) simple uses the result from the first one to parse the information into domain objects.

  1. //If you want to parse the whole apache server status
  2. // and create domain objects out of the information.
  3. //begin of dependencies
  4. $parserBuilderFactory = new \Net\Bazzline\Component\ApacheServerStatusParser\Service\Builder\ParserBuilderFactory();
  5. $storageBuilder = new \Net\Bazzline\Component\ApacheServerStatusParser\Service\Builder\RemoteStorageBuilder();
  6. $parserBuilder = $parserBuilderFactory->create();
  7. //end of dependencies
  8. //begin of business logic
  9. // the following five logical lines are doing the trick
  10. $storageBuilder->setUrlToTheApacheStatusFileToParseUpfront('<the url to your apache server status>');
  11. $storageBuilder->selectParseModeAllUpfront();
  12. $storageBuilder->build();
  13. $parserBuilder->setStorageUpfront(
  14. $storageBuilder->andGetStorageAfterTheBuild();
  15. );
  16. $parserBuilder->build();
  17. // and now, do something with the result
  18. var_dump(
  19. $parserBuilder->andGetListOfDetailOrNullAfterwards()
  20. );
  21. var_dump(
  22. $parserBuilder->andGetInformationOrNullAfterwards()
  23. );
  24. var_dump(
  25. $parserBuilder->andGetScoreboardOrNullAfterwards()
  26. );
  27. var_dump(
  28. $parserBuilder->andGetStatisticOrNullAfterwards()
  29. );
  30. //end of business logic

Example

Examples are placed in the path /example. Because of the two implemented content fetchers, they are devide into the two categories “local“ and “remote“.

Example Using Local File

  1. cd <project root>/example/local
  2. #if no file path is provided, the shipped with example file will be used
  3. #parse all
  4. php parse_all.php [<string: path to the apache status file to parse>]
  5. #parse detail only
  6. php parse_detail_only.php [<string: path to the apache status file to parse>]
  7. #check if a request is still running
  8. php check_if_a_request_is_still_running <int: pid> [<string: uri path> [<string: path to the example file>]]

Example Using Remote File

  1. cd <project root>/example/remote
  2. #if no file path is provided, the build in example url will be used
  3. #parse all
  4. php remote/parse_all.php [<string: url to the apache status page>]
  5. #parse detail only
  6. php parse_detail_only.php [<string: url to the apache status page>]

Example Output

Parsed Detail

Just one detail.

  1. http_method: GET
  2. ip_address: 198.76.54.42
  3. pid: 22754
  4. status: Ready
  5. uri_authority: example.host.org:80
  6. uri_path_with_query: /

Parsed Information

  1. date_of_built: Oct 06 1983 20:44:43
  2. identifier: first.example.host.org (via 123.45.67.89)
  3. mode_of_mpm: prefork
  4. version: Apache/2.4.10 (Debian)

Parsed Scoreboard

  1. process: _WWW_WWWWKW_....._.W..................................................................................................................................
  2. legend
  3. 0: "_" Waiting for Connection,
  4. 1: "S" Starting up,
  5. 2: "R" Reading Request,
  6. 3: "W" Sending Reply,
  7. 4: "K" Keepalive (read),
  8. 5: "D" DNS Lookup,
  9. 6: "C" Closing connection,
  10. 7: "L" Logging,
  11. 8: "G" Gracefully finishing,
  12. 9: "I" Idle cleanup of worker,
  13. 10: "." Open slot with no current process

Parsed Statistic

  1. b_per_request: 1667
  2. cpu_load: 584
  3. cpu_usage: u959.08 s127.38 cu1.72 cs.95
  4. current_timestamp: 1485804167
  5. idle_workers: 4
  6. kb_per_request: 57
  7. parent_server_configuration_generation: 1
  8. parent_server_mpm_generation: 1
  9. requests_currently_being_processed: 10
  10. requests_per_second: 283
  11. restart_timestamp: 1485785532
  12. server_load: 1.22 1.05 0.83
  13. server_up_time: 5 hours 10 minutes 35 seconds
  14. total_accesses: 5279
  15. total_traffic: 29.6 MB

Install

By Hand

  1. mkdir -p vendor/net_bazzline/php_component_apache_server_status_parser
  2. cd vendor/net_bazzline/php_component_apache_server_status_parser
  3. git clone https://github.com/bazzline/php_component_apache_server_status_parser .

With Packagist

  1. composer require net_bazzline/php_component_apache_server_status_parser:dev-master

Workflow

  • get content
  • split content into dedicated sections
    • detail
    • information
    • scoreboard
    • statistic
  • parse each section into its fitting domain object

List Of Domain Model

  • DomainModel\Detail
    • dynamic detail information about each worker
  • DomainModel\Information
    • general static information about the environment
  • DomainModel\Scoreboard
    • dynamic and general worker information
  • DomainModel\Statistic
    • dynamic server statistic

List Of Service

  • Service\Builder
    • contains builder classes to kickstart the usage of this component
  • Service\Content\Fetcher
    • contains classes to get the apache status content from somewhere
  • Service\Content\Parser
    • contains classes to create domain objects out of the content
  • Service\Content\Processor
    • contains the class to split the content into logical parts (does the heavy lifting)
  • Service\Content\Storage
    • contains classes to share the logical content parts
  • Service\StateMachine
    • contains a class to ease up splitting the content into logical parts

Notes

Thanks to:

Final Words

Star it if you like it :-). Add issues if you need it. Pull patches if you enjoy it. Write a blog entry if you use it. Donate something if you love it :-].