Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zikwall/clickhouse-server-statistic
🔓 ClickHouse administrative, statistic viewer and RESTful API
https://github.com/zikwall/clickhouse-server-statistic
application clickhouse php7 restful-api server statistics yii2
Last synced: 10 days ago
JSON representation
🔓 ClickHouse administrative, statistic viewer and RESTful API
- Host: GitHub
- URL: https://github.com/zikwall/clickhouse-server-statistic
- Owner: zikwall
- License: mit
- Created: 2019-08-02T10:27:14.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-20T12:00:06.000Z (almost 5 years ago)
- Last Synced: 2024-11-09T20:44:35.280Z (2 months ago)
- Topics: application, clickhouse, php7, restful-api, server, statistics, yii2
- Language: PHP
- Homepage:
- Size: 32.5 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# clickhouse-server-statisitc
ClickHouse administrative, statistic viewer and RESTful API## Installation & Run
1. `git clone https://github.com/zikwall/clickhouse-server-statistic`
2. `cd clickhouse-server-statistic`
3. `composer install`### Nginx
```bash
server {
listen 80;
server_name clickhouse-server-statistic.local;access_log /var/log/nginx/access_clickhouse-server-statistic.log;
root /path/to/clickhouse-server-statistic/web;
index index.php index.html index.htm;location / {
try_files $uri $uri/ /index.php?$query_string;
}location ~ \.php$ {
try_files $uri /index.php =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/run/php/php7.2-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
fastcgi_read_timeout 600;
}
}
```