TCollector

tcollector is a client-side process that gathers data from local collectors and pushes the data to OpenTSDB. You run it on all your hosts, and it does the work of sending each host's data to the TSD.

tcollector是client-side(客户端)进程,收集本地数据,然后推送OPenTSDB。在所有的主机上运行,然后把主机上的数据发送给TSD。

OpenTSDB is designed to make it easy to collect and write data to it. It has a simple protocol, simple enough for even a shell script to start sending data. However, to do so reliably and consistently is a bit harder. What do you do when your TSD server is down? How do you make sure your collectors stay running? This is where tcollector comes in.

OpenTSDB的设计目标是让数据采集以及数据存储变得更容易。其拥有简单的协议,简单得可以支持shell脚本发送数据。但是,如何做到可靠性和一致性是个比较难的事情。当TSD server故障的时候如何处理?如何确保你的collectors保持持续运行?tcollector可以做到这些。

Tcollector does several things for you:

  • Runs all of your data collectors and gathers their data
  • Does all of the connection management work of sending data to the TSD
  • You don't have to embed all of this code in every collector you write
  • Does de-duplication of repeated values
  • Handles all of the wire protocol work for you, as well as future enhancements
Tcollector做的几件事情:
  • 运行所有的数据采集程序,并将数据收集起来
  • 做所有发送数据到TSD的连接管理工作
  • 在你自己实现的collector中无需实现这个功能
  • 对于重复的数据会做删除工作
  • 可以处理各种传输协议,包括一些增强版本

Deduplication

Typically you want to gather data about everything in your system. This generates a lot of datapoints, the majority of which don't change very often over time (if ever). However, you want fine-grained resolution when they do change. Tcollector remembers the last value and timestamp that was sent for all of the time series for all of the collectors it manages. If the value doesn't change between sample intervals, it suppresses sending that datapoint. Once the value does change (or 10 minutes have passed), it sends the last suppressed value and timestamp, plus the current value and timestamp. In this way all of your graphs and such are correct. Deduplication typically reduces the number of datapoints TSD needs to collect by a large fraction. This reduces network load and storage in the backend. A future OpenTSDB release however will improve on the storage format by using RLE (among other things), making it essentially free to store repeated values.

通常情况下,你想采集系统内所有的数据。这将会产生很多的数据点,大部分的数据点在一段时间内是不会变化的。但是,当有变化的时候,你期望平滑(fine-grained solution)的解决方案。Tcollector在一次采集周期内会记录为每个collector记录最后一次值以及采集时间。如果在相同的时间间隔内,值没有变化的话,它会这个数据点暂时保存起来,不发送。一旦数据发送变化(10分钟时间过去),它将发送最后的值以及时间戳,加上当前的值和时间戳。这样的话,你的数据图就是正确的。重复数据删除会减少TSD中数据点的个数,而这些数据点是需要采集的。这样的话,会减少后端的网络开销以及存储。OpenTSD将使用RLE改善存储的格式,使更本质地解决重复数据存储问题。

Collecting lots of metrics with tcollector

Collectors in tcollector can be written in any language. They just need to be executable and output the data to stdout. Tcollector will handle the rest. The collectors are placed in the collectors directory. Tcollector iterates over every directory named with a number in that directory and runs all the collectors in each directory. If you name the directory 60, then tcollector will try to run every collector in that directory every 60 seconds. Use the directory 0 for any collectors that are long-lived and run continuously. Tcollector will read their output and respawn them if they die. Generally you want to write long-lived collectors since that has less overhead. OpenTSDB is designed to have lots of datapoints for each metric (for most metrics we send datapoints every 15 seconds).

If there any non-numeric named directories in the collectors directory, then they are ignored. We've included a lib and etc directory for library and config data used by all collectors.

在tcollector中的Collectors可以支持任何语言。只需要它们是可执行的,并且将输出结果输出到标准输出中。Tcollector会处理这些结果。

这些collectors放在collectors目录下。Tcolletor遍历每个以数字命名的目录,然后运行每个目录下所有的collectors。如果你的目录命名为60,tcollcetor将每60s运行这个目录下每个collector。使用目录0表示是一个常住的进行,一直运行。Tcollector将读取它们的输出,如果进程挂了,tcollector将重启它。通常情况下,你想写一个常住的collecotrs,因为这样开销相对比较小。OpenTSDB设计是针对每个metric有很多数据点,对于大部分的metrics每15s发送一次数据。

如果在collectors中有不是数据命名的目录,将被忽略。同时还包括collectors使用到的lib和etc目录。

Installation of tcollector

You need to clone tcollector from GitHub:

git clone git://github.com/OpenTSDB/tcollector.git

and edit 'tcollector/startstop' script to set following variable: TSD_HOST=dns.name.of.tsd

To avoid having to run mkmetric for every metric that tcollector tracks you can to start TSD with the --auto-metric flag. This is useful to get started quickly, but it's not recommended to keep this flag in the long term, to avoid accidental metric creation.

在GitHub上下载相关代码:

git clone git://github.com/OpenTSDB/tcollector.git

在startstop中修改TSD_HOST= dns.name.of.tsd,TSD主机的域名。

为了避免每个metric都运行mkmetric,使用--auto-metric启动TSD。这样启动更快一些,但是不推荐在长时间保持这个设置,避免新增的metric。

Collectors bundled with tcollector

The following are the collectors we've included as part of the base package, together with all of the metric names they report on and what they mean. If you have any others you'd like to contribute, we'd love to hear about them so we can reference them or include them with your permission in a future release.

下面的collector是系统自带的基础包,每个metric的实际意思和名称吻合。

General collectors

0/dfstat.py

df状态相关的,和/usr/bin/df命令类似

These stats are similar to ones provided by /usr/bin/df util.

  • df.bytes.total

    total size of data

  • df.bytes.used

    bytes used

  • df.bytes.free

    bytes free

  • df.inodes.total

    total number of inodes

  • df.inodes.used

    number of inodes used

  • df.inodes.free

    number of inodes free

These metrics include time series tagged with each mount point and the filesystem's fstype. This collector filters out any cgroup, debugfs, devtmpfs, rpc_pipefs, rootfs filesystems, as well as any any mountpoints mounted under /dev//sys//proc/, and /lib/.

这些metric包括时间序列以及文件系统的fstype。这个collector过滤任何的cgroup,debugfs,devtmpfs,rpc_pipefs,rootfs等文件系统,以及/dev,/sys/,/proc/,/lib/等挂着点。

With these tags you can select to graph just a specific filesystem, or all filesystems with a particular fstype (e.g. ext3).

有了这些tags,你可以选择指定文件系统的图,也可以选择特定fstype对应的所有文件系统。

输出结果如下图:

[root@etch171 mars171 0]# ./dfstat.py
df.bytes.total 1413306095 4159016960 mount=/ fstype=ext3
df.bytes.used 1413306095 3396472832 mount=/ fstype=ext3
df.bytes.percentused 1413306095 81.6652796722 mount=/ fstype=ext3
df.bytes.free 1413306095 762544128 mount=/ fstype=ext3
df.inodes.total 1413306095 1048576 mount=/ fstype=ext3
df.inodes.used 1413306095 74363 mount=/ fstype=ext3
df.inodes.percentused 1413306095 7.09180831909 mount=/ fstype=ext3
df.inodes.free 1413306095 974213 mount=/ fstype=ext3
df.bytes.total 1413306095 241564782592 mount=/data1 fstype=ext3
df.bytes.used 1413306095 202218672128 mount=/data1 fstype=ext3
df.bytes.percentused 1413306095 83.7119839896 mount=/data1 fstype=ext3
df.bytes.free 1413306095 39346110464 mount=/data1 fstype=ext3
df.inodes.total 1413306095 60882944 mount=/data1 fstype=ext3
df.inodes.used 1413306095 645826 mount=/data1 fstype=ext3
df.inodes.percentused 1413306095 1.06076670668 mount=/data1 fstype=ext3
df.inodes.free 1413306095 60237118 mount=/data1 fstype=ext3
......

  

0/ifstat.py

来自于文件/proc/net/dev

These stats are from /proc/net/dev.

  • proc.net.bytes

    (rate) Bytes in/out

  • proc.net.packets

    (rate) Packets in/out

  • proc.net.errs

    (rate) Packet errors in/out

  • proc.net.dropped

    (rate) Dropped packets in/out

These are interface counters, tagged with the interface, iface=, and direction= in or out. Only ethN interfaces are tracked. We intentionally exclude bondN interfaces, because bonded interfaces still keep counters on their child ethN interfaces and we don't want to double-count a box's network traffic if you don't select on iface=.

输出的结果是和具体iface绑定,有in和out两个方向。只有ethN的网卡接口会跟踪。有意识地排除bondN接口,因为绑定的接口在ethN接口中进行记数,如果不选择具体iface=的话,这样可以避免double-count。

输出结果:

proc.net.fifo.errs 1413338912 0 iface=eth0 direction=in
proc.net.frame.errs 1413338912 0 iface=eth0 direction=in
proc.net.compressed 1413338912 0 iface=eth0 direction=in
proc.net.multicast 1413338912 6869312 iface=eth0 direction=in
proc.net.bytes 1413338912 1064085376 iface=eth0 direction=out
proc.net.packets 1413338912 7305051 iface=eth0 direction=out
proc.net.errs 1413338912 0 iface=eth0 direction=out
proc.net.dropped 1413338912 0 iface=eth0 direction=out
proc.net.fifo.errs 1413338912 0 iface=eth0 direction=out
proc.net.collisions 1413338912 0 iface=eth0 direction=out
proc.net.carrier.errs 1413338912 0 iface=eth0 direction=out
proc.net.compressed 1413338912 0 iface=eth0 direction=out
proc.net.bytes 1413338912 100779466516 iface=eth1 direction=in
proc.net.packets 1413338912 862873063 iface=eth1 direction=in
proc.net.errs 1413338912 124 iface=eth1 direction=in
proc.net.dropped 1413338912 0 iface=eth1 direction=in
proc.net.fifo.errs 1413338912 0 iface=eth1 direction=in
proc.net.frame.errs 1413338912 124 iface=eth1 direction=in
proc.net.compressed 1413338912 0 iface=eth1 direction=in
proc.net.multicast 1413338912 781541 iface=eth1 direction=in
proc.net.bytes 1413338912 90765358317 iface=eth1 direction=out
proc.net.packets 1413338912 976995995 iface=eth1 direction=out
proc.net.errs 1413338912 0 iface=eth1 direction=out
proc.net.dropped 1413338912 0 iface=eth1 direction=out

 

0/iostat.py

Data is from /proc/diskstats.

  • iostat.disk.*

    per-disk stats

  • iostat.part.*

    per-partition stats (see note below on different metrics, depending on if you have a 2.6 kernel before 2.6.25 or after.)

See iostats.txt

[root@typhoeus79 ice_test_m avaliables]# more /proc/diskstats 1       0 ram0 0 0 0 0 0 0 0 0 0 0 01       1 ram1 0 0 0 0 0 0 0 0 0 0 01       2 ram2 0 0 0 0 0 0 0 0 0 0 01       3 ram3 0 0 0 0 0 0 0 0 0 0 01       4 ram4 0 0 0 0 0 0 0 0 0 0 01       5 ram5 0 0 0 0 0 0 0 0 0 0 01       6 ram6 0 0 0 0 0 0 0 0 0 0 01       7 ram7 0 0 0 0 0 0 0 0 0 0 01       8 ram8 0 0 0 0 0 0 0 0 0 0 01       9 ram9 0 0 0 0 0 0 0 0 0 0 01      10 ram10 0 0 0 0 0 0 0 0 0 0 01      11 ram11 0 0 0 0 0 0 0 0 0 0 01      12 ram12 0 0 0 0 0 0 0 0 0 0 01      13 ram13 0 0 0 0 0 0 0 0 0 0 01      14 ram14 0 0 0 0 0 0 0 0 0 0 01      15 ram15 0 0 0 0 0 0 0 0 0 0 08       0 sda 194745 287649 6810384 578134 68316366 101295831 1361828191 887830852 0 157754620 8883733288       1 sda1 5048 1768 178050 23162 130155 188328 2548968 2781202 0 722873 28043158       2 sda2 1100 5771 53512 4594 506 24646 201216 10205 0 7300 147988       3 sda3 53769 7820 1194332 125424 13980592 15361786 234893716 116798689 0 55437523 1169133338       4 sda4 2 0 4 34 0 0 0 0 0 34 348       5 sda5 5325 158518 165019 5156 7897969 16671932 196569642 65590406 0 28552584 655889618       6 sda6 67094 57688 2033043 200871 42956415 34695714 621323346 634120014 0 86205636 6343039608       7 sda7 62381 56041 3185872 218802 3350729 34353425 306291303 68530336 0 11667279 687478303       0 hda 0 0 0 0 0 0 0 0 0 0 09       0 md0 0 0 0 0 0 0 0 0 0 0 0

/proc/diskstats has 11 stats for a given physical device. These are all rate counters, except ios_in_progress.

/proc/diskstats对于物理设备有11个状态,下面是这些值:

.read_requests       Number of reads completed        已经完成读的数目
.read_merged         Number of reads merged           合并读的数目
.read_sectors        Number of sectors read           扇区读的数目
.msec_read           Time in msec spent reading
.write_requests      Number of writes completed
.write_merged        Number of writes merged
.write_sectors       Number of sectors written
.msec_write          Time in msec spent writing
.ios_in_progress     Number of I/O operations in progress
.msec_total          Time in msec doing I/O
.msec_weighted_total Weighted time doing I/O (multiplied by ios_in_progress)

in 2.6.25 and later, by-partition stats are reported the same as disks.

Note

in 2.6 before 2.6.25, partitions have only 4 stats per partition

.read_issued
.read_sectors
.write_issued
.write_sectors

For partitions, these *_issued are counters collected before requests are merged, so aren't the same as *_requests (which is post-merge, which more closely represents represents the actual number of disk transactions).

Given that diskstats provides both per-disk and per-partition data, for TSDB purposes we put them under different metrics (versus the same metric and different tags). Otherwise, if you look at a given metric, the data for a given box will be double-counted, since a given operation will increment both the disk series and the partition series. To fix this, we output by-disk data to iostat.disk.* and by-partition data to iostat.part.*.

两种不同的维度

0/netstat.py

Socket分配以及网络统计,读取的文件是

 78         sockstat = open("/proc/net/sockstat")79         netstat = open("/proc/net/netstat")80         snmp = open("/proc/net/snmp")

  

例子:

[root@eos176 data1]# cat /proc/net/sockstat
sockets: used 200
TCP: inuse 88 orphan 2 tw 290 alloc 89 mem 39
UDP: inuse 8 mem 2
UDPLITE: inuse 0
RAW: inuse 0
FRAG: inuse 0 memory 0

Socket allocation and network statistics.

Metrics from /proc/net/sockstat.

  • net.sockstat.num_sockets

    Number of sockets allocated (only TCP)

  • net.sockstat.num_timewait

    Number of TCP sockets currently in TIME_WAIT state

  • net.sockstat.sockets_inuse

    Number of sockets in use (TCP/UDP/raw)

  • net.sockstat.num_orphans

    Number of orphan TCP sockets (not attached to any file descriptor)

  • net.sockstat.memory

    Memory allocated for this socket type (in bytes)

  • net.sockstat.ipfragqueues

    Number of IP flows for which there are currently fragments queued for reassembly

Metrics from /proc/net/netstat (netstat -s command).

  • net.stat.tcp.abort

    Number of connections that the kernel had to abort. <code>type=memory</code> is especially bad, the kernel had to drop a connection due to having too many orphaned sockets. Other types are normal (e.g. timeout)

  • net.stat.tcp.abort.failed

    Number of times the kernel failed to abort a connection because it didn't even have enough memory to reset it (bad)

  • net.stat.tcp.congestion.recovery

    Number of times the kernel detected spurious retransmits and was able to recover part or all of the CWND

  • net.stat.tcp.delayedack

    Number of delayed ACKs sent of different types.

  • net.stat.tcp.failed_accept

    Number of times a connection had to be dropped after the 3WHS. reason=full_acceptq indicates that the application isn't accepting connections fast enough. You should see SYN cookies too

  • net.stat.tcp.invalid_sack

    Number of invalid SACKs we saw of diff types. (requires Linux v2.6.24-rc1 or newer)

  • net.stat.tcp.memory.pressure

    Number of times a socket entered the "memory pressure" mode (not great).

  • net.stat.tcp.memory.prune

    Number of times a socket had to discard received data due to low memory conditions (bad)

  • net.stat.tcp.packetloss.recovery

    Number of times we recovered from packet loss by type of recovery (e.g. fast retransmit vs SACK)

  • net.stat.tcp.receive.queue.full

    Number of times a received packet had to be dropped because the socket's receive queue was full. (requires Linux v2.6.34-rc2 or newer)

  • net.stat.tcp.reording

    Number of times we detected re-ordering and how

  • net.stat.tcp.syncookies

    SYN cookies (both sent &amp; received

输出结果:

[root@typhoeus79 ice_test_m avaliables]# ./iostat.py
iostat.disk.read_requests 1413341296 194745 dev=sda
iostat.disk.read_merged 1413341296 287649 dev=sda
iostat.disk.read_sectors 1413341296 6810384 dev=sda
iostat.disk.msec_read 1413341296 578134 dev=sda
iostat.disk.write_requests 1413341296 68320119 dev=sda
iostat.disk.write_merged 1413341296 101301793 dev=sda
iostat.disk.write_sectors 1413341296 1361905911 dev=sda
iostat.disk.msec_write 1413341296 887834437 dev=sda
iostat.disk.ios_in_progress 1413341296 0 dev=sda
iostat.disk.msec_total 1413341296 157756976 dev=sda
iostat.disk.msec_weighted_total 1413341296 888376910 dev=sda

0/nfsstat.py--RPC统计

These stats are from /proc/net/rpc/nfs.

  • nfs.client.rpc.stats

    RPC stats counter

It tagged with the type (<code>type=</code>) of operation. There are 3 operations: authrefrsh - number of times the authentication information refreshed, calls - number of calls conducted, and retrans - number of retransmissions

  • nfs.client.rpc

    RPC calls counter

It tagged with the version (version=) of NFS server that conducted the operation, and name of operation (op=)

Description of operations can be found at appropriate RFC: NFS ver. 3 RFC1813, NFS ver. 4 RFC3530, NFS ver. 4.1 RFC5661.

0/procnettcp.py

读取文件是/proc/net/tcp{,6}

These stats are all from /proc/net/tcp{,6}. (Note if IPv6 is enabled, some IPv4 connections seem to get put into /proc/net/tcp6). Collector sleeps 60 seconds in between intervals. Due in part to a kernel performance issue in older kernels and in part due to systems with many TCP connections, this collector can take sometimes 5 minutes or more to run one interval, so the frequency of datapoints can be highly variable depending on the system.

  • proc.net.tcp

    Number of TCP connections

For each run of the collector, we classify each connection and generate subtotals. TSD will automatically total these up when displaying the graph, but you can drill down for each possible total or a particular one. Each connection is broken down with a tag for user=username(with a fixed list of users we care about or put under "other" if not in the list). It is also broken down into state with state=, (established, time_wait, etc). It is also broken down into services with <code>service=</code> (http, mysql, memcache, etc) Note that once a connection is closed, Linux seems to forget who opened/handled the connection. For connections in time_wait, for example, they will always show user=root. This collector does generate a large amount of datapoints, as the number of points is (S*(U+1)*V), where S=number of TCP states, U=Number of users you track, and V=number of services (collections of ports). The deduper does dedup this down very well, as only 3 of the 10 TCP states are generally ever seen. On a typical server this can dedup down to under 10 values per interval.

0/procstats.py

Miscellaneous stats from /proc.

  • proc.stat.cpu

    (rate) CPU counters (jiffies), tagged by cpu type (type=user, nice, system, idle, iowait, irq, softirq, etc). As a rate they should aggregate up to approximately 100*numcpu per host. Best viewed as type=* or maybe type={user|nice|system|iowait|irq}

  • proc.stat.intr

    (rate) Number of interrupts

  • proc.stat.ctxt

    (rate) Number of context switches

See http://www.linuxhowtos.org/System/procstat.htm

  • proc.vmstat.*

    A subset of VM Stats from /proc/vmstat (mix of rate and non-rate). See http://www.linuxinsight.com/proc_vmstat.html .

  • proc.meminfo.*

    Memory usage stats from /proc/meminfo. See the Linux kernel documentation

  • proc.loadavg.*

    1min, 5min, 15min, runnable, total_threads metrics from /proc/loadavg

  • proc.uptime.total

    (rate) Seconds since boot

  • proc.uptime.now

    (rate) Seconds since boot that the system has been idle

  • proc.kernel.entropy_avail

    Amount of entropy (in bits) available in the input pool (the one that's cryptographically strong and backing /dev/random among other things). Watch this value on your frontend servers that do SSL unwrapping, if it gets too low, your SSL performance will suffer

  • sys.numa.zoneallocs

    Number of pages allocated from the preferred node (type=hit) or not (type=miss)

  • sys.numa.foreign_allocs

    Number of pages this node allocated because the preferred node didn't have a free page to accommodate the request

  • sys.numa.allocation

    Number of pages allocated locally (type=local) or remotely (type=remote) for processes executing on this node

  • sys.numa.interleave

    Number of pages allocated successfully by the interleave strategy

0/smart-stats.py

Stats from SMART disks.

  • smart.raw_read_error_rate

    Data related to the rate of hardware read errors that occurred when reading data from a disk surface. The raw value has different structure for different vendors and is often not meaningful as a decimal number. (vendor specific)

  • smart.throughput_performance

    Overall throughput performance of a hard disk drive

  • smart.spin_up_time

    Average time of spindle spin up (from zero RPM to fully operational [millisecs])

  • smart.start_stop_count

    A tally of spindle start/stop cycles

  • smart.reallocated_sector_ct

    Count of reallocated sectors

  • smart.seek_error_rate

    Rate of seek errors of the magnetic heads. (vendor specific)

  • smart.seek_time_performance

    Average performance of seek operations of the magnetic heads

  • smart.power_on_hours

    Count of hours in power-on state, shows total count of hours (or minutes, or seconds) in power-on state. (vendor specific)

  • smart.spin_retry_count

    Count of retry of spin start attempts

  • smart.recalibration_retries

    The count that recalibration was requested (under the condition that the first attempt was unsuccessful)

  • smart.power_cycle_count

    The count of full hard disk power on/off cycles

  • smart.soft_read_error_rate

    Uncorrected read errors reported to the operating system

  • smart.program_fail_count_chip

    Total number of Flash program operation failures since the drive was deployed

  • smart.erase_fail_count_chip

    "Pre-Fail" Attribute

  • smart.wear_leveling_count

    The maximum number of erase operations performed on a single flash memory block

  • smart.used_rsvd_blk_cnt_chip

    The number of a chip’s used reserved blocks

  • smart.used_rsvd_blk_cnt_tot

    "Pre-Fail" Attribute (at least HP devices)

  • smart.unused_rsvd_blk_cnt_tot

    "Pre-Fail" Attribute (at least Samsung devices)

  • smart.program_fail_cnt_total

    Total number of Flash program operation failures since the drive was deployed

  • smart.erase_fail_count_total

    "Pre-Fail" Attribute

  • smart.runtime_bad_block

    The total count of all read/program/erase failures

  • smart.end_to_end_error

    The count of parity errors which occur in the data path to the media via the drive's cache RAM (at least Hewlett-Packard)

  • smart.reported_uncorrect

    The count of errors that could not be recovered using hardware ECC

  • smart.command_timeout

    The count of aborted operations due to HDD timeout

  • smart.high_fly_writes

    HDD producers implement a Fly Height Monitor that attempts to provide additional protections for write operations by detecting when a recording head is flying outside its normal operating range. If an unsafe fly height condition is encountered, the write process is stopped, and the information is rewritten or reallocated to a safe region of the hard drive. This attribute indicates the count of these errors detected over the lifetime of the drive

  • smart.airflow_temperature_celsius

    Airflow temperature

  • smart.g_sense_error_rate

    The count of errors resulting from externally induced shock & vibration

  • smart.power-off_retract_count

    The count of times the heads are loaded off the media

  • smart.load_cycle_count

    Count of load/unload cycles into head landing zone position

  • smart.temperature_celsius

    Current internal temperature

  • smart.hardware_ecc_recovered

    The count of errors that were recovered using hardware ECC

  • smart.reallocated_event_count

    Count of remap operations. The raw value of this attribute shows the total count of attempts to transfer data from reallocated sectors to a spare area

  • smart.current_pending_sector

    Count of "unstable" sectors (waiting to be remapped, because of unrecoverable read errors)

  • smart.offline_uncorrectable

    The total count of uncorrectable errors when reading/writing a sector

  • smart.udma_crc_error_count

    The count of errors in data transfer via the interface cable as determined by ICRC (Interface Cyclic Redundancy Check)

  • smart.write_error_rate

    The total count of errors when writing a sector

  • smart.media_wearout_indicator

    The normalized value of 100 (when the SSD is new) and declines to a minimum value of 1

  • smart.transfer_error_rate

    Count of times the link is reset during a data transfer

  • smart.total_lba_writes

    Total count of LBAs written

  • smart.total_lba_read

    Total count of LBAs read

Description of metrics can be found at: S.M.A.R.T. article on wikipedia. The best way to understand/find metric is to look at producer's specification.

Other collectors

0/couchbase.py

0/elasticsearch.py

0/hadoop_datanode_jmx.py

0/haproxy.py

0/hbase_regionserver_jmx.py

0/mongo.py

0/mysql.py

Stats from MySQL (relational database).

Refer to the following documentation for metrics description: InnoDB Innodb monitors, Global Show status, Engine Show engine, Slave Show slave status, Process list Show process list.

0/postgresql.py

0/redis-stats.py

Stats from Redis (key-value store).

Refer to the following documentation for metrics description: Redis info comands.

0/riak.py

0/varnishstat.py

Stats from Varnish (HTTP accelerator).

0/zookeeper.py

Stats from Zookeeper (centralized service for distributed synchronization).

Refer to the following documentation for metrics description: Zookeeper admin commands.

代码结构如下:

[root@etch171 mars171 collectors]# tree -L 2
.
|-- 0
|   |-- couchbase.py
|   |-- dfstat.py
|   |-- elasticsearch.py
|   |-- graphite_bridge.py
|   |-- hadoop_datanode.py
|   |-- hadoop_namenode.py
|   |-- haproxy.py
|   |-- hbase_master.py
|   |-- hbase_regionserver.py
|   |-- ifstat.py
|   |-- iostat.py
|   |-- mongo.py
|   |-- mysql.py
|   |-- netstat.py
|   |-- nfsstat.py
|   |-- opentsdb.sh
|   |-- postgresql.py
|   |-- procnettcp.py
|   |-- procstats.py
|   |-- redis-stats.py
|   |-- riak.py
|   |-- smart-stats.py
|   |-- udp_bridge.py
|   |-- varnishstat.py
|   |-- zabbix_bridge.py
|   |-- zfsiostats.py
|   |-- zfskernstats.py
|   `-- zookeeper.py
|-- __init__.py
|-- etc
|   |-- __init__.py
|   |-- config.py
|   |-- graphite_bridge_conf.py
|   |-- mysqlconf.py
|   |-- postgresqlconf.py
|   |-- udp_bridge_conf.py
|   `-- zabbix_bridge_conf.py
`-- lib|-- __init__.py|-- hadoop_http.py`-- utils.py

  

【参考资料】

1、http://opentsdb.net/docs/build/html/user_guide/utilities/tcollector.html

2、http://en.wikipedia.org/wiki/Wire_protocol

3、http://www.ttlsa.com/opentsdb/opentsdb-nagios-monitoring-and-alarming-realization/

转载于:https://www.cnblogs.com/gsblog/p/4025482.html

TCollector相关推荐

  1. java opentsdb 链接 池_如何使用tCollector通过Java在OpenTSDB中添加数据

    我的目标是通过Java代码直接将数据插入TSDB,为此,我尝试创建将数据打印到STDOUT的可执行jar.然后,我编写了收集器以运行此jar,并将其放入tcollector / collectors ...

  2. OpenTSDB介绍

    1.OpenTSDB介绍 1.1.OpenTSDB是什么?主要用途是什么? 官方文档这样描述:OpenTSDB is a distributed, scalable Time Series Datab ...

  3. All Things OpenTSDB

    1. OpenTSDB介绍 OpenTSDB用HBase存储所有的时序(无须采样)来构建一个分布式.可伸缩的时间序列数据库.它支持秒级数据采集所有metrics,支持永久存储,可以做容量规划,并很容易 ...

  4. Stack Overflow 监控系统内部架构初探

    Stack Exchange 架构主管 Nick Craver 在最近的一篇文章中介绍了他们的监控系统.他在文章中讨论了监控策略背后的理念和动机,并介绍了他们的工具集--主要是 Bosun.Grafa ...

  5. 一站式数据采集存储的利器:阿里云InfluxDB®️数据采集服务

    背景 随着时序数据的飞速增长,时序数据库不仅需要解决系统的稳定性和性能问题,还需实现数据从采集到分析的链路打通,才能让时序数据真正产生价值.在时序数据采集领域,一直缺少自动化的采集工具.虽然用户可以使 ...

  6. 阿里云TSDB在大数据集群监控中的方案与实战

    目前大部分的互联网企业基本上都有搭建自己的大数据集群,为了能更好让我们的大数据集群更加高效安全的工作,一个优秀的监控方案是必不可少的:所以今天给大家带来的这篇文章就是讲阿里云TSDB在上海某大型互联网 ...

  7. Stack Overflow监控系统内部架构初探

    Stack Exchange架构主管Nick Craver在最近的一篇文章中介绍了他们的监控系统.他在文章中讨论了监控策略背后的理念和动机,并介绍了他们的工具集--主要是Bosun.Grafana和O ...

  8. TDengine学习笔记

    文章目录 1. 基本概念 1.1 表设计的优点 2. 开发指南 2.1 建立连接 2.1.1 原生连接 2.1.2 REST 连接 2.2 数据建模 2.2.1 建库 2.2.2 创建超级表 2.2. ...

  9. openTSDB详解之Writing Data

    [译]openTSDB详解之Writing Data[待完善] 本文译自:http://opentsdb.net/docs/build/html/user_guide/writing/index.ht ...

最新文章

  1. JQUERY的appendappendTo
  2. SpringBoot_入门-HelloWorld细节-自动配置
  3. linux间服务器间文件传输,Linux命令scp服务器间文件传输教程
  4. win2003 IIS6配置PHP 5.3.3(fastCGI方式+eAccelerator)+ASP.NET 4.0(MVC3)
  5. 聚类算法之K-means实践
  6. 机试题:地图定位、拍照并显示、录制视频并播放
  7. 如何解决markdown中图片上传的问题
  8. cydia无法安装卸载插件_【初识太极】CAD卸载不干净无法重新安装怎么办?
  9. Java 封装、继承、多态的理解
  10. 无人机通信电台--XBee-PRO 900HP (S3B)
  11. 牛客每日练习----数的变换,Do you like Banana ?,Liao Han
  12. 我国历史上各个朝代的都城
  13. facebook应用中_如何从Facebook应用程序的快捷方式栏中删除图标
  14. 有一个已经排好序的数组,输入一个数,将其插入到数组中,使得数组还是有序的。要求数组元素的值来自初始化
  15. “不裁员的微软” 裁员了!网上哀嚎一片!
  16. 【微信转账—设置付款时间问题】
  17. 京东换新 Logo :脸蛋胖了,脖子粗了
  18. php手动起事物和自动的区别,手动挡和自动挡哪个好 有什么区别
  19. Hive SQL 每日SQL
  20. 黄金分割法_python

热门文章

  1. VC系统扫雷游戏外挂源代码程序下载(转帖
  2. C++编程经验总结1
  3. 在思科无线控制器上查看5GHz和2.4GHz的客户端数量
  4. 批量实现ssh免交互认证
  5. Linux运维系统工程师系列---13
  6. 微软私有云分享(R2)22 计算机配置文件与基础设置
  7. 读取exchange邮件的未读数(转载)
  8. CentOS 6.0安装JDK7
  9. 2440启动代码分析
  10. 功放关键规格参数检查