labels('type', 'temp', 'location', 'TLV'); $createResponse = $client->tscreate('temp:TLV', $arguments); echo "Time series with location TLV creation status: {$createResponse}\n"; $anotherArguments = (new CreateArguments()) ->labels('type', 'temp', 'location', 'JER'); $createResponse = $client->tscreate('temp:JER', $anotherArguments); echo "Time series with location JER creation status: {$createResponse}\n"; echo "Returns all keys with location=TLV:\n"; print_r($client->tsqueryindex('location=TLV'));