push monitor to influxdb
This commit is contained in:
parent
38f034aa34
commit
8a180e0df7
|
@ -1,4 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace JsonRpc\Middleware;
|
namespace JsonRpc\Middleware;
|
||||||
|
|
||||||
use Closure;
|
use Closure;
|
||||||
|
@ -37,23 +38,23 @@ class TunnelMiddleware
|
||||||
public function terminate($request, $response)
|
public function terminate($request, $response)
|
||||||
{
|
{
|
||||||
//过滤tool返回结果
|
//过滤tool返回结果
|
||||||
if ($response instanceof JsonResponse)
|
if ($response instanceof JsonResponse) {
|
||||||
{
|
if (app()->environment('dev', 'production')) {
|
||||||
$content = $response->getOriginalContent();
|
$content = $response->getOriginalContent();
|
||||||
$status = isset($content['error']) ? $content['error']['code'] : 200;
|
$status = isset($content['error']) ? $content['error']['code'] : 200;
|
||||||
|
$client = new \InfluxDB\Client("10.0.1.67");
|
||||||
$client = new \InfluxDB\Client('127.0.0.1', '8086');
|
|
||||||
$database = $client->selectDB('rpc_monitor');
|
$database = $client->selectDB('rpc_monitor');
|
||||||
$points = array(
|
$points = array(
|
||||||
new Point(
|
new Point(
|
||||||
'monitor',
|
'monitor',
|
||||||
0.64,
|
null,
|
||||||
['app' =>env('APP_NAME'), 'status' => $status],
|
['app' => env('APP_NAME'), 'status' => $status, 'env' => app()->environment()],
|
||||||
['content' => $request->getContent()]
|
['content' => $request->getContent()]
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$result = $database->writePoints($points, Database::PRECISION_SECONDS);
|
$database->writePoints($points, Database::PRECISION_SECONDS);
|
||||||
app('rpc.logger')->info('rpc tunnel ctx ' [$result]);
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user