VelvetMetric beta
Tracking and monitoring. Simple. Realtime. Cloud based.
Actual live tracking
“Ok, so this is like Google Analytics for Servers?”
- curious user
Well, yes - if you want. But also a lot more!
VelvetMetrics lets you track iPhone usage, web page render times, server status, etc.
Your imagination is the limit.
Code samples
We have code samples to get you started fast!
-
Objective-C
- (void)log { NSMutableData *receivedData = [NSMutableData new]; // Create the request. NSURLRequest *theRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.velvetmetrics.com/log?path=my.objective-c.path&power=1"] cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:5.0]; // create the connection with the request // and start loading the data NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self]; if (theConnection) { receivedData = [[NSMutableData data] retain]; // Do something with the response } else { // Connection failed. Do something if you like. } [receivedData release]; } -
Ruby
require 'curb' curl = Curl::Easy.new path = "my.ruby.path" power = 1 curl.url = "http://www.velvetmetrics.com/log?path=#{path}&power=#{power}" curl.perform -
import urllib def main(): path = "my.python.path" power = 1 fh = urllib.urlopen("http://velvetmetrics.com/log?path=%s&power=%d" % (path, power)) fh.read() main() -
var path = 'my.jquery.path'; var power = 1; $(function() { $.get('http://www.velvetmetrics.com/log?path=' + path + '&power=' + power); }); -
$path = "my.php.path"; $power = 1; $fp = fsockopen("www.velvetmetrics.com", 80, $errno, $errstr, 30); if ($fp) { $out = "GET /log?path=".$path."&power=".$power." HTTP/1.1\r\n"; $out .= "Host: www.velvetmetrics.com\r\n"; $out .= "Connection: Close\r\n\r\n"; fwrite($fp, $out); fclose($fp); } -
Win batch script
REM :: logevent.bat REM :: Log event to VelvetMetrics SET path_string=my.winbat.path SET power_string=1 "C:\Program Files\cUrl\curl.exe" "http://www.velvetmetrics.com/log?path=%path_string%&power=%power_string%" PAUSE
Want to see how it works? Try out our live demo account!
VelvetMetrics is a cloud based service for tracking and monitoring - built by people with an extensive experience from web production, server management and application development.
This is a service for web sites, emails, mobile apps, and more.
We built VelvetMetrics because we wanted a simple solution for developers, like ourselves, to keep track of data. Try it yourself to see what you can do with it. We're thrilled to see all the new possibilities it brings!
Getting started
No need to read lengthy docs to start tracking your data.
VelvetMetrics have you covered with a lot of quick and simple code samples to get you started in less then a few minutes!
Showcases
VelvetMetrics have successfully been used for a variety of projects and solutions.
Here we share our knowleadge on how to set up tracking for:
- Web page render time
- Track deployment and errors
- iPhone app usage statistics
- Server health status
...and more examples to get you up and running with easy, to advanced, tracking in no time!
From the blog
New feature: Set graph timespan
Just added a new feature to the graph output.Now you can arbitrarily set the timespan for the a graph. Simply pass along the parameter datalength (as the number of minutes) for the graph output, o...