All Projects → clickalicious → Phpmemadmin

clickalicious / Phpmemadmin

Licence: bsd-3-clause
Bringing Memcached to the web.

Projects that are alternatives of or similar to Phpmemadmin

Memcache Info
Simple and efficient way to show information about Memcache.
Stars: ✭ 84 (-83.59%)
Mutual labels:  statistics, memcached
Kubeadm Playbook
Fully fledged (HA) Kubernetes Cluster using official kubeadm, ansible and helm. Tested on RHEL/CentOS/Ubuntu with support of http_proxy, dashboard installed, ingress controller, heapster - using official helm charts
Stars: ✭ 533 (+4.1%)
Mutual labels:  cluster, dashboard
Polaris
Validation of best practices in your Kubernetes clusters
Stars: ✭ 2,397 (+368.16%)
Mutual labels:  cluster, dashboard
Your spotify
Self hosted Spotify tracking dashboard
Stars: ✭ 102 (-80.08%)
Mutual labels:  statistics, dashboard
Npm Stats
📈 npm package statistics dashboard build with vue
Stars: ✭ 106 (-79.3%)
Mutual labels:  statistics, dashboard
magento-cluster
Highly Available and Auto-scalable Magento Cluster
Stars: ✭ 21 (-95.9%)
Mutual labels:  memcached, cluster
scanstatistics
An R package for space-time anomaly detection using scan statistics.
Stars: ✭ 41 (-91.99%)
Mutual labels:  statistics, cluster
Vudash
Powerful, Flexible, Open Source dashboards for anything
Stars: ✭ 363 (-29.1%)
Mutual labels:  statistics, dashboard
Folder Explorer
分析文件目录,统计数据并以树形结构和图表的形式展示结果,也可以导出多种格式留存
Stars: ✭ 479 (-6.45%)
Mutual labels:  statistics
Flask Monitoringdashboard
Automatically monitor the evolving performance of Flask/Python web services.
Stars: ✭ 483 (-5.66%)
Mutual labels:  dashboard
Prunecluster
Fast and realtime marker clustering for Leaflet
Stars: ✭ 473 (-7.62%)
Mutual labels:  cluster
Docker monitoring logging alerting
Docker host and container monitoring, logging and alerting out of the box using cAdvisor, Prometheus, Grafana for monitoring, Elasticsearch, Kibana and Logstash for logging and elastalert and Alertmanager for alerting.
Stars: ✭ 479 (-6.45%)
Mutual labels:  dashboard
Glass Isc Dhcp
Glass - ISC DHCP Server Interface
Stars: ✭ 486 (-5.08%)
Mutual labels:  statistics
Clusterkit
An iOS map clustering framework targeting MapKit, Google Maps and Mapbox.
Stars: ✭ 476 (-7.03%)
Mutual labels:  cluster
Dashboard
A dashboard scaffolding based on Vue.js 3.0 created by Vite.
Stars: ✭ 497 (-2.93%)
Mutual labels:  dashboard
Nats Operator
NATS Operator
Stars: ✭ 471 (-8.01%)
Mutual labels:  cluster
Bigslice
A serverless cluster computing system for the Go programming language
Stars: ✭ 469 (-8.4%)
Mutual labels:  cluster
Edward
A probabilistic programming language in TensorFlow. Deep generative models, variational inference.
Stars: ✭ 4,674 (+812.89%)
Mutual labels:  statistics
Hera
Train/evaluate a Keras model, get metrics streamed to a dashboard in your browser.
Stars: ✭ 497 (-2.93%)
Mutual labels:  dashboard
Scalecube Services
ScaleCube Services is a high throughput, low latency reactive microservices library built to scale. it features: API-Gateways, service-discovery, service-load-balancing, the architecture supports plug-and-play service communication modules and features. built to provide performance and low-latency real-time stream-processing. its open and designed to accommodate changes. (no sidecar in a form of broker or any kind)
Stars: ✭ 482 (-5.86%)
Mutual labels:  cluster

Logo of phpMemAdmin
Bringing Memcached to the web

Build Status Scrutinizer clickalicious premium Packagist
GitHub issues Coverage Status GitHub release GitHub stars

Table of Contents

Features

  • Detailed statistics, charts & graphs
  • Data management for Memcached (full CRUD support)
  • Memcached cluster health dashboard
  • Memcached host dashboard
  • Update check
  • Nice & comfortable UI
  • Clean & well documented code
  • Responsive and mobile ready

Notice

This software is currently in early alpha state and so i want to warn - There is currently no ciritcal bug i know about but maybe still some potential for (Memcached) data loss - from my point of view its not critical in development cause it's a non-persistent memory store we're talkin about - but it's just fair to warn you before you use it! :)

Requirements

  • PHP >= 5.3 (compatible up to version 5.6 - but not compatible with hhvm)

Philosophy

phpMemAdmin was designed as helper while developing a cache in PHP using Memcached as in memory store. I had a need for a tool which displays me modified data stored in Memcached for example. The existing tools did not provide a UI i would describe as usable so i wrote my own. Trying to align it with the PECL Memcached extension.

Installation

The recommended way to install this tool is through Composer. Require the clickalicious/phpmemadmin package into your composer.json file:

{
    "require": {
        "clickalicious/phpmemadmin": "~0.3"
    },
    "scripts": {
    	"post-autoload-dump": [
        	"Clickalicious\\PhpMemAdmin\\Installer::postInstall"
    	]
    }
}

Important! The postInstall call is important - it installs all required files and shows you an example vhost configuration for your installation. So be sure to add it to the composer.json (as shown above) before you call composer install. phpMemAdmin requires at least v0.4.0 of Memcached.php!

phpMemAdmin is also available as download from github packed as zip-file or via git clone https://github.com/clickalicious/phpMemAdmin.git .

Config

After install is completed you will find a configuration file called .config.dist in the directory app/. Rename this file to .config to enable you local configuration. The configuration is a simple JSON-structure which is self explaining. Example (.config.dist):

{
  "username": "admin",
  "password": "pass",
  "timeout": -1,
  "cluster": {
    "name": "Cluster",
    "thresholds": {
        "notice": 50,
        "warning": 75,
        "error": 95
    },
    "hosts": [
      {
        "host": "127.0.0.1",
        "port": 11211
      }
    ]
  },
  "render": {
    "auto": true
  },
  "format": {
    "date": "Y-m-dTH:i:s"
  },
  "updatecheck": false
}

As you can see - you can add hosts of your cluster to hosts node in the tree. To enable updatecheck set it to true. Of course be sure to change username and password!

Screenshots

Cluster Dashboard
Cluster Dashboard

Host Dashboard
Host Dashboard

Data Management
Host Dashboard

Documentation

There is currently no documentation.

Versioning

For a consistent versioning i decided to make use of Semantic Versioning 2.0.0 http://semver.org. Its easy to understand, very common and known from many other software projects.

Roadmap

  • [ ] General stability improvements and tests
  • [ ] Realtime statistics
  • [ ] Move all assets from CDN to local filesystem as precondition for compiling everything into a single file app (requires an issue).
  • [ ] Move "settings" from dashboard to an own page
  • [ ] Add more checks to cluster health check
  • [ ] Add Slab Statistics and Overview page

Participate & share

... yeah. If you're a code monkey too - maybe we can build a force ;) If you would like to participate in either Code, Comments, Documentation, Wiki, Bug-Reports, Unit-Tests, Bug-Fixes, Feedback and/or Critic then please let me know as well!

Known Limitations

phpMemAdmin sometimes has trouble reading data written by PHP Memcache and/or PHP Memcached (note the d at the end) extension. So if you try to read data written by any of these extensions and get in trouble try to reset the store to clean state and try to manage data with phpMemAdmin. I still work on those compatibility issues trying to fix them to provide a maximum of compatibility and stability as well.

Security Issues

If you encounter a (potential) security issue don't hesitate to get in contact with me [email protected] before releasing it to the public. So i get a chance to prepare and release an update before the issue is getting shared. Thank you!

Sponsors

Thanks to our sponsors and supporters:

JetBrains Navicat
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].