6 lines
338 B
PHP
6 lines
338 B
PHP
<?php
|
|
header('Content-Type: application/json');
|
|
$r = @file_get_contents('http://127.0.0.1:6333/collections', false, stream_context_create(['http'=>['timeout'=>3]]));
|
|
$d = $r ? json_decode($r, true) : null;
|
|
echo json_encode(['status' => $d && $d['status']==='ok' ? 'ok' : 'down', 'collections' => count($d['result']['collections']??[])]);
|