Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment "external Azure customers" is the real story (Score 2) 62

The key piece from this article is:

“With the incredible demand Azure is seeing and the growth of our platform, we’ve decided to pause our planned migration of LinkedIn to allocate resources to external Azure customers,” Hiremagalur wrote in his memo.

At least a couple of ways to interpret this comment. Azure either doesn't have the capacity required to support LinkedIn or the cost of running it "on-prem" is so much better than in Azure vs paying customers it doesn't make sense...or a combination of the two.

Comment Re:"they should have used ZFS or btrfs" (Score 1) 304

I actually prefer to backup a MySQL slave because you can very easily tell it to stop replication and then do a snapshot or mysqldump while it is not replicating. You get a simple point in time snapshot of your database system. Once the backup is done tell the slave to start replication again. This assumes that your master database isn't over loaded trying to replicate data to slaves as the now out of date slave is going to need a lot of data to get caught up.

Comment Zabbix (Score 1) 342

I vote Zabbix. Here's why.

1) Free but offers paid support if you need it
2) Can use agents, snmp or simple checks like ping
3) Agents can be extended with your own scripts and such. If a check isn't built in you can add it. For example, I added a very simple script for checking of MySQL replication had stopped or failed.
4) Templates, makes it easy to add a metric and create a trigger based on that metric to any host attached to that template
5) Triggers can be configured to minimize false positives (multiple dropped packets before sending an alert.
6) You can graph item, group of items or an aggregate value of items in a host group
7) Create your own maps
8) Create custom screens that group simple or complex graphs or whatever else you want onto a single page

There are some things to know about Zabbix though. You need to put some thought into items to get accurate values. Is the value you are getting from a device in bits or bytes for example. You can use custom multipliers to convert values into what you want to see.

Honestly, Zabbix is incredibly flexible and this flexibility also gives it a steep learning curve but once you get hosts entered and the templates situated the way you want it becomes very easy to add new hosts down the line. The biggest tip I can give is to make sure you spend a lot of time thinking out how to setup your templates. Zabbix includes a number of them and you'll want to customize them. One thing I found that wasn't a good idea is to make a template and then attach it to a template. It's much easier to join a host to multiple templates.

http://www.zabbix.com/

Slashdot Top Deals

"Little else matters than to write good code." -- Karl Lehenbauer

Working...