Skip to content

Commit

Permalink
add "ops" graphs combining read, write totals
Browse files Browse the repository at this point in the history
  • Loading branch information
jbellis committed May 18, 2010
1 parent a83b557 commit c48d379
Show file tree
Hide file tree
Showing 8 changed files with 53 additions and 38 deletions.
1 change: 1 addition & 0 deletions compactions_bytes.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ graph_category Cassandra
bytes.label compacted bytes
bytes.jmxObjectName org.apache.cassandra.db:type=CompactionManager
bytes.jmxAttributeName BytesCompacted
bytes.type DERIVE
bytes.min 0
bytes.graph yes
16 changes: 16 additions & 0 deletions ops_pending.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
graph_title Operations pending
graph_vlabel Operations
graph_category Cassandra
graph_order read_ops write_ops

read_ops.label compactions pending
read_ops.jmxObjectName org.apache.cassandra.db:type=CompactionManager
read_ops.jmxAttributeName PendingTasks
read_ops.min 0
read_ops.graph yes

write_ops.label writes pending
write_ops.jmxObjectName org.apache.cassandra.concurrent:type=ROW-MUTATION-STAGE
write_ops.jmxAttributeName PendingTasks
write_ops.min 0
write_ops.graph yes
9 changes: 0 additions & 9 deletions read_stage_pending.conf

This file was deleted.

18 changes: 18 additions & 0 deletions standard1_ops.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
graph_title StorageProxy operation count
graph_vlabel ops / ${graph_period}
graph_category Cassandra
graph_order reads writes

reads.label reads
reads.jmxObjectName org.apache.cassandra.db:type=ColumnFamilyStores,keyspace=Keyspace1,columnfamily=Standard1
reads.jmxAttributeName ReadCount
reads.type DERIVE
reads.min 0
reads.graph yes

writes.label writes
writes.jmxObjectName org.apache.cassandra.db:type=ColumnFamilyStores,keyspace=Keyspace1,columnfamily=Standard1
writes.jmxAttributeName WriteCount
writes.type DERIVE
writes.min 0
writes.graph yes
18 changes: 18 additions & 0 deletions storageproxy_ops.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
graph_title StorageProxy operation count
graph_vlabel ops / ${graph_period}
graph_category Cassandra
graph_order reads writes

reads.label reads
reads.jmxObjectName org.apache.cassandra.service:type=StorageProxy
reads.jmxAttributeName ReadOperations
reads.type DERIVE
reads.min 0
reads.graph yes

writes.label writes
writes.jmxObjectName org.apache.cassandra.service:type=StorageProxy
writes.jmxAttributeName WriteOperations
writes.type DERIVE
writes.min 0
writes.graph yes
10 changes: 0 additions & 10 deletions storageproxy_reads.conf

This file was deleted.

10 changes: 0 additions & 10 deletions storageproxy_writes.conf

This file was deleted.

9 changes: 0 additions & 9 deletions write_stage_pending.conf

This file was deleted.

0 comments on commit c48d379

Please sign in to comment.