Line listeners
SHORT .. line listeners:
root@83d5eeeb3086:/opt/graphite/conf# grep -B1 LINE_RECEIVER carbon.conf
LINE_RECEIVER_INTERFACE = 127.0.0.1
LINE_RECEIVER_PORT = 2003
--| #!/bin/bash | |
| JQPATH=$(which jq) | |
| if [ "x$JQPATH" == "x" ]; then | |
| echo "Couldn't find jq executable." 1>&2 | |
| exit 2 | |
| fi | |
| set -eu | |
| shopt -s nullglob |
| Carbon relay - performance | |
| alias(color(sumSeries(group(carbon.agents.*.updateOperations)), "blue"),"Updates") | |
| alias(color(sumSeries(group(carbon.agents.*.metricsReceived)), "green"), "Metrics Received") | |
| alias(color(sumSeries(group(carbon.agents.*.committedPoints)),"orange"),"Committed Points")) | |
| alias(secondYAxis(color(sumSeries(group(carbon.agents.*.pointsPerUpdate)),"yellow")),"PPU") | |
| alias(secondYAxis(color(averageSeries(group(carbon.agents.*.cpuUsage)),"red")),"CPU (avg)") | |
| alias(secondYAxis(color(sumSeries(group(carbon.agents.*.creates)),"purple")),"Creates") | |
| Metrics received | |
| carbon.agents.*.metricsReceived |
Line listeners
SHORT .. line listeners:
root@83d5eeeb3086:/opt/graphite/conf# grep -B1 LINE_RECEIVER carbon.conf
LINE_RECEIVER_INTERFACE = 127.0.0.1
LINE_RECEIVER_PORT = 2003
--| # Use centos/7 | |
| $ vagrant init centos/7 | |
| $ vagrant up | |
| # You should see a message like: | |
| # [default] The guest additions on this VM do not match the install version of | |
| # VirtualBox! This may cause things such as forwarded ports, shared | |
| # folders, and more to not work properly. If any of those things fail on | |
| # this machine, please update the guest additions and repackage the | |
| # box. |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:tools="http://schemas.android.com/tools" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| android:orientation="vertical" | |
| android:paddingBottom="@dimen/activity_vertical_margin" | |
| android:paddingLeft="@dimen/activity_horizontal_margin" | |
| android:paddingRight="@dimen/activity_horizontal_margin" | |
| android:paddingTop="@dimen/activity_vertical_margin" | |
| tools:context=".MainActivity"> |
| version: "2" | |
| services: | |
| varnish: | |
| #hostname: magento2.docker | |
| image: meanbee/magento2-varnish:latest | |
| environment: | |
| - VIRTUAL_HOST=magento2.docker | |
| - VIRTUAL_PORT=80 | |
| - HTTPS_METHOD=noredirect | |
| ports: |