Swoole?? ?? ? ????? ????? ?????????
Swoole?? ?? ? ????? ????? ??????? ??? ??? ???? ?? ?? ? ?? ??? ???????. ??? ?????? ??? ??????.
1. ?? ?? :
Swoole?? ?? ??? ????? ?? PHP ?? ?? ?? ?? ?????? ??? ? ????. ??? Swoole ?? ??? PHP? ?? ?? ??? ???? ??? ????.
<code class="php">$http = new Swoole\Http\Server("0.0.0.0", 9501); $http->on('request', function ($request, $response) { $logFile = 'swoole.log'; $logMessage = "New request received: " . date('Ymd H:i:s') . "\n"; file_put_contents($logFile, $logMessage, FILE_APPEND); $response->end("Hello World\n"); }); $http->start();</code>
? ??? swoole.log
?? ??? ???? ?? ??? ?? ?? ??? ?????.
2. ??????? ?? ?? ??:
?? ?? ?? ????? ???? ??? ??? ?? ????? ?? Swoole ??????? ??? Monolog? ?? ?????? ???? ?? ?? ????.
<code class="php">use Monolog\Logger; use Monolog\Handler\StreamHandler; $logger = new Logger('swoole_app'); $logger->pushHandler(new StreamHandler('swoole_app.log', Logger::DEBUG)); $http = new Swoole\Http\Server("0.0.0.0", 9501); $http->on('request', function ($request, $response) use ($logger) { $logger->info('New request received', ['method' => $request->server['request_method'], 'uri' => $request->server['request_uri']]); $response->end("Hello World\n"); }); $http->start();</code>
3. ???? :
????? ?? Prometheus ? Grafana? ?? ??? ???? ???? ???? Swoole ??? ??? ??? ? ? ????. swoole/prometheus
?????? ???? ???????.
<code class="php">use Swoole\Prometheus\CollectorRegistry; use Swoole\Prometheus\MetricFamilySamples; $registry = new CollectorRegistry(); $http = new Swoole\Http\Server("0.0.0.0", 9501); $http->on('request', function ($request, $response) use ($registry) { $counter = $registry->getOrRegisterCounter('swoole_app', 'requests_total', 'Total number of requests'); $counter->inc(); $response->end("Hello World\n"); }); $http->on('start', function ($server) use ($registry) { swoole_timer_tick(1000, function () use ($registry, $server) { $exporter = new Swoole\Prometheus\Exporter($registry); $exporter->setListenAddress('0.0.0.0:9090'); $exporter->start(); }); }); $http->start();</code>
? ??? Swoole ??? ?? ???? ????? ?? Prometheus Exporter? ?????.
SWOOLE ???????? ??? ?????? ?? ??? ??????
Swoole ???????? ??? ???? ??? ?? ?? ??? ??????.
1. ??? ?? ?? :
Swoole? ??? ??? ????? ??? ? ?? ??? ?????? ?? ?????. I/O ??? ??? ??? ??? ??? ??? ??? ?? ?????? ??????. SwooleHandler
?? ??? ?? ?? ??? ?????.
2. ??? ? ?? :
??? ?? ?? ???? ?? ? ? ??? ??? ? ??? ??????. ??? ???? ??? JSON ?? ??? ??? ?? ? ? ????.
<code class="php">$logger->info('New request received', ['method' => $request->server['request_method'], 'uri' => $request->server['request_uri']]);</code>
3. ?? ?? ? ?? :
?? ?? ?? (? : ???, ??, ??, ??)? ???? ???? ?? ??? ??????. ?? ?? ?? ?? ?? ??? ???? ??? ??? ???? ?? ?? ??? ????? ?????????.
4. ?? ?? :
??? ID, ?? ID, ?? ??? ? ?? IP? ?? ??? ? ??? ?? ??? ?? ??? ??????. ?? ?? ??? ???? ?? ????? ?? ?? ??? ???? ? ??????.
5. ?? ??? ??? ?? :
? ?? ?? ?? ? ??? ?? ELK (ElasticSearch, Logstash, Kibana) ?? AWS CloudWatch? ?? ?? ??? ?? ???? Swoole ?????? ??? ??????.
???? ??? ???? Swoole ??? ??? ????? ??? ??????
???? ??? Swoole ??? ????? ?? ???? ? ?????. ??? ??? ???? ??? ??? ????.
1. ??? ??? :
Prometheus? ?? ??? ???? ???? ?? ??, ?? ?? ? ???? ?? ?? ?? ??? (KPI)? ??????. Swoole? Prometheus? ???? ?? ??? ????.
-
swoole/prometheus
?? ? ?? - Swoole ??????? ???? ??????
- ??? ???? ?? ?? ?? Prometheus? ?????
2. Grafana?? ??? :
Prometheus? ???? ?? ? ? Grafana? ???? ??? ??? ????? ?? ??? ????. ?? ???? ??? ???? ???? ? ??????.
3. ?? :
Prometheus?? ?? ??? ???? ?? ?? ?? ?? ? ? ?????. ?? ?? ????? ??? ??? ?? ??? ???? ? ??????.
4. ?? ?? :
???? ??? ???? ???? ?? ??? ???? ?? ????? ???????.
- ?? ?? ?? : ?? ?? ???? ???? ?????? ??? ?????? ?? ????? ???? ? ?? ????.
- ??? : ?? ?? ???? ?? ???? ? ?? ?? ?? ?? ?? ??? ????? ??? ??? ?????.
- ?? ?? : CPU, ??? ? ???? ??? ?????? ??? ??? ???? ?????.
5.?? ??? :
Apache Jmeter ?? Locust? ???? ??? ??? ???? ??? ???? ??? ????? ?? ????? ??????? ???? ??? ??? ??? ?????.
???? ?? ? ????? ?? Swoole ?? ????? ?? ??? ????????
??? ????? ?? ? ????? ????? ? ?? Swoole ?? ????? ? ?????.
1. Swoolehandler? ?? :
Monolog? ???? PHP ?? ??????? Swoole? ?? ??? ??? SwooleHandler
? ?? ??? ??? ???? ? ??????.
<code class="php">use Monolog\Logger; use Monolog\Handler\SwooleHandler; $logger = new Logger('swoole_app'); $logger->pushHandler(new SwooleHandler('swoole_app.log'));</code>
2. Swoole/Prometheus :
? ?????? Swoole ???????? ???? ???? ??? ???? ???? ???? ? ??? ?? Prometheus? ?????.
<code class="php">use Swoole\Prometheus\CollectorRegistry; $registry = new CollectorRegistry();</code>
3. Swoole/Tracer :
? ??? ?? ??? ??? ? ???, ?? Swoole ?? ????? ?? ?? ??? ???? ? ??????. ?????? Jaeger? ?? ???? ? ?????.
<code class="php">use Swoole\Tracer\Tracer; $tracer = new Tracer();</code>
4. Swoole/Elastic :
Elasticsearch?? ??? ??? ?????? ???? Elasticsearch? ????? ??? ??? ????, ?? ?? ??? ?? ? ??????? ELK ??? ??? ? ? ????.
<code class="php">use Swoole\Elastic\Elastic; $elastic = new Elastic('http://localhost:9200');</code>
5. Swoole/Grafana :
Grafana ??? Swoole-decific? ???? Swoole/Prometheus? ???? ??? ?? ??? ??? ??? ??? ? ???? ??? ?????.
??? ?? ? ?????? ???? ??? ???? ???? ? ????? SWOOLE ??????? ?? ??? ?? ? ???? ???? ?? ? ????.
? ??? Swoole?? ?? ? ????? ????? ?????????? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? AI ??

Undress AI Tool
??? ???? ??

Undresser.AI Undress
???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover
???? ?? ???? ??? AI ?????.

Clothoff.io
AI ? ???

Video Face Swap
??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

?? ??

??? ??

???++7.3.1
???? ?? ?? ?? ???

SublimeText3 ??? ??
??? ??, ???? ?? ????.

???? 13.0.1 ???
??? PHP ?? ?? ??

???? CS6
??? ? ?? ??

SublimeText3 Mac ??
? ??? ?? ?? ?????(SublimeText3)

??? ??









