This document discusses InfluxDB, an open-source time series database. It stores time stamped numeric data in structures called time series. The document provides an overview of time series data, describes how to install and use InfluxDB, and discusses features like its HTTP API, client libraries, Grafana integration for visualization, and benchmark results showing it has better performance for time series data than other databases.
TSDB INFLUXDB ATIME SERIES DATABASE Created by Gianluca Arbezzano / @GianArb
2.
TSDB TIME SERIESDATABASE It is a software system that is optimized for handling time series data, arrays of numbers indexed by time (a datetime or a datetime range)
3.
LEARN STARTUP EricRies The Lean Startup: How Today's Entrepreneurs Use Continuous Innovation to Create Radically Successful Businesses
4.
TIME SERIES DATA A time series is a sequence of data points, measured typically at successive points in time spaced at uniform time intervals
GRAFANA Is anJavascript OpenSource Dashboard Drag and drop panels Click and select region to zoom Bars, Lines, Points Mix lines, bars and points InfluxDB query editor Annotation lines
ADAPTER SYSTEM Veryflexible UDP Adapter Guzzle Adapter Your implementation..
23.
CREATE CLIENT $options= new InfluxDBOptions(); $adapter = new InfluxDBAdapterUdpAdapter($options); $client = new InfluxDBClient(); $client->setAdapter($adapter);
MARK YOUR EVENT $client->mark("error.404", ["page" => "/a-missing-page"]); $client->mark("app.search", $points, "s");
26.
QUERY $influx->query("select *from mine"); $influx->query("select * from mine", "s"); $client->setFilter(new ColumnsPointsFilter()); $data = $client->query("select * from hd_used");
27.
THE KEY OFMEASURE GitHub - Making MySql Better at GitHub
28.
RICHARD FEYNMAN -THE KEY TO SCIENCE 1. Guess 2. Compute Consequences 3. Compare with experiment/experience "IF IT DISAGREES WITH EXPERIMENT, IT’S WRONG"
29.
FUTURE Star 12Star this project Use it and help us with your issues & PR