Guide based on :
-
http://digitalronin.github.io/2014/04/29/installing-graphite-on-ubuntu-1404/
-
sudo apt-get install graphite-web graphite-carbon apache2 libapache2-mod-wsgi
During the installation, you will be asked whether you want Carbon
Guide based on :
http://digitalronin.github.io/2014/04/29/installing-graphite-on-ubuntu-1404/
sudo apt-get install graphite-web graphite-carbon apache2 libapache2-mod-wsgi
During the installation, you will be asked whether you want Carbon
| Function Get-AzureWebSitePublishXml | |
| { | |
| Param( | |
| [Parameter(Mandatory = $true)] | |
| [String]$WebsiteName | |
| ) | |
| # Get the current subscription | |
| $s = Get-AzureSubscription -Current | |
| if (!$s) {throw "Cannot get Windows Azure subscription."} |
| function cleanRequireCache(){ | |
| Object.keys(require.cache).forEach(function(key) { | |
| delete require.cache[key]; | |
| }); | |
| } | |
| function cleanRequire(path){ | |
| delete require.cache[require.resolve(path)]; | |
| return require(path); |
| function denodifyMethod(funcName){ | |
| return function(){ | |
| return Q.npost(this, funcName, arguments); | |
| } | |
| } | |
| serviceBusService.createTopicIfNotExistsQ = denodifyMethod("createTopicIfNotExists"); |
| .myClass.ng-enter, .myClass.ng-leave { | |
| -webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 5s; | |
| transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 5s; | |
| } | |
| .myClass.ng-enter, | |
| .myClass.ng-leave.ng-leave-active { | |
| opacity:0; | |
| } |
| { | |
| "@context": { | |
| "@vocab": "http://schema.org/", | |
| "myCustomProperty": null, | |
| "@base": "https://gist.github.com/davideicardi/94e9f338a11328061e42", | |
| "slug": "@id", | |
| "type": "@type" | |
| }, | |
| "slug": "people", | |
| "type": "DataFeed", |
| "use strict"; | |
| const debug = require("debug")("azureServiceBus"); | |
| const events = require("events"); | |
| const azure = require("azure"); | |
| /* | |
| Class wrapper around Azure Service Bus Topic/Subscription API. | |
| Usage: |
| <!-- directives --> | |
| <% @Page Language="C#" %> | |
| <%@ Import namespace="MongoDB.Bson.Serialization" %> | |
| <%@ Import namespace="MongoDB.Bson.Serialization.Conventions" %> | |
| <%@ Import namespace="MongoDB.Driver" %> | |
| <%@ Import namespace="MongoDB.Bson" %> | |
| <!-- call example: | |
| https://server/_diagnostics/mongo.aspx?connectionString=mongodb%3A%2F%2Fserver%3A27017%2Ftest&collectionName=logs |
| <!-- directives --> | |
| <% @Page Language="C#" %> | |
| <%@ Import namespace="System.Net" %> | |
| <!-- call example: | |
| https://server/_diagnostics/dns.aspx?hostName=microsoft.com | |
| --> | |
| <script runat="server"> | |
| private string HostName2IP(string hostname) | |
| { |
| sudo docker run -d \ | |
| --name graphite \ | |
| --restart=always \ | |
| -v /home/webplu/graphite/storage:/opt/graphite/storage \ | |
| -v /home/webplu/log:/var/log \ | |
| -p 80:80 \ | |
| -p 2003:2003 \ | |
| -p 8125:8125/udp \ | |
| hopsoft/graphite-statsd | |