IT
StatsComponent is now available with stats function in the suburnt Solr python client library. More info: http://wiki.apache.org/solr/StatsComponent Example:
1 2 3 4 5 6 7 |
from sunburnt import SolrInterface si = SolrInterface(SOLR_URL) si = si.query('*') si = si.stats(fields=['price', ]) _r = si.execute() print _r.stats_counts.stats_fields |
For the source code go to my github...
I have upgraded the LVM collector in my StorageCollector repository on github (https://github.com/charlesnagy/Diamond-StorageCollectors) to match the new directory structure of Diamond and added support to collect flashcache...
Life long learning? I hate this expression but kind of expresses the importance of learning. Why? Because nowdays (especially on the field of IT) if you’re not...
Dataimport handler I had to trigger the dataimporter delta-import command from the code so I added support for this function. Example:
1 2 3 4 5 6 7 |
from sunburnt import SolrInterface SOLR_URL = 'http://some.url:8983/solr/' _s = SolrInterface(SOLR_URL) _s.dataimport('delta-import') _response = _s.dataimport('status') print _response.import_status print _response.import_status.time_taken |
Following properties are available...
I need to monitor snapshot usage pv free space and a bunch of other parameters on a lot of servers. As we are using graphite and...
Recent comments