Does anyone know of an app that can monitor a beanstalkd queue? I'm looking for something that shows stats on tubes and jobs, and allows you to inspect the details.
I'm not really picky about language/platform, just want to know if there's something out there before I write my own.
All of these and at least two others are listed on the beanstalkd wiki tools page:
https://github.com/kr/beanstalkd/wiki/Tools
The best ones are:
http://github.com/ptrofimov/beanstalk_console — a web admin interface (PHP)
http://github.com/andreisavu/django-jack — a web admin interface (Django)
http://github.com/dustin/beanstalk-tools — a CLI admin interface
Another one is here https://github.com/ptrofimov/beanstalk_console (php web monitoring interface )
Also very new: https://github.com/denniskuczynski/beanstalkd_view (Ruby/Sinatra app)
Another solution based on PHP (for fast and easy deployment): phpBeanstalkdAdmin.
Disclaimer: I am the creator of this tool ;)
I've just written a new Beanstalkd CLI tool. It should run on all platforms and doesn't have any dependencies.
https://github.com/schickling/beanstalkd-cli/
beanstalktop is excellent/essential. It is a top-like interface that shows you the status of all your tubes. You get live job counts of various states for all tubes, and some general stats.
https://github.com/wewriteapps/beanstalktop
All of these and at least two others are listed on the beanstalkd wiki tools page:
https://github.com/kr/beanstalkd/wiki/Tools
aurora: Cross-platform Beanstalk queue server console.
https://github.com/xuri/aurora
Related
I am working on cc2650 and cc2531 dongle and I have already installed 6lbr. Now I need to check security for CoAP and I need to implement a simple example. I want to work on Er-REST example and I have some questions regarding to deployment.
1)Do I have to also use Cooja? I am asking I am using the native-border-router together with the slip-radio. So which settings should I have done to be able to deploy the example?
There are how to's for other platforms but not slip radio cc2650.
Is there anyone who worked on or do you have any suggestions?
Thanks in advance...
Check the TMOTES HOWTO in https://github.com/contiki-os/contiki/tree/master/examples/er-rest-example
It should be the same concept to what you want.
Be careful with what "native" platform means: check this link https://github.com/contiki-os/contiki/wiki/Native%2C-minimal-net
I am trying to configure an existing Ruby on Rails application (https://github.com/richcaudle/twitter-vibe) with datasift. Application displays live tweets of a user on the page. The datasift authentication parameters are set in config/social-config.yml. I have provided the correct authentication parameters in config/social-config.yml but yet the tweets do not show up. Only the html layout is displayed. Entire application is available in the same github link. I needed some help in fixing this application. What am i missing?
I created this app a while ago, before I joined DataSift. It's not something I've had time to maintain. I've added some instructions to the Readme file which I hope will help, I've also updated the app to use the latest DataSift library.
You'll need to have a Twitter, DataSift and Pusher account to get it running. Fortunately all are free or give you a free trial!
Probably all you were missing is that you need to start the data-collector & tasks scripts in /script to get it all running. I've added these to the Readme.
If you are going to use this in production or in public, please adapt the demo to meet Twitter's Terms of Service (for instance the display requirements). I created the app as an internal demo.
https://dev.twitter.com/terms/api-terms
Thanks,
Rich
Well, you can always use the datasift ruby library. The repository that you mentioned; probably you might need a pusher account. You can use the datasift library.
I would like to know is there any forum or google repository where we can publish our dart projects for showcasing or for fun just to exchange opinions other than github or any svn vendors as such.
Since all major platform vendors have this feature.
If yes would request someone to point me in the right direction since I am working on a small simple project and I am interested in just publishing our work just for experiment sake.
Check out http://www.builtwithdart.com - which aims to be a showcase of community contributed Dart apps.
To contribute pick from the following options:
clone, edit and submit a pull request at the site's github
open an issue at the site's github
Ping me a message
Ideally contributors would be able to provide a screenshot, a G+ link, and a paragraph or two about the app - especially welcome are any notes you have about developing it using Dart.
This is what we have: http://www.dartlang.org/samples/. Other projects that use Google technologies are showcased on https://developers.google.com/showcase/, but Dart has its own site. http://www.dartlang.org/samples/ already has some third-party contributions. If we get a lot more, we can do more to showcase them. It'd also be great to showcase a bunch of cool apps at Google I/O, especially if they're large and in production or if they're particularly cool technologically. If you're working on those sorts of things, you can either send me email, leave me a comment, or post to the Dart mailing list. Thanks!
Trying to set up an at-the-door ticketing solution for an upcoming makerfaire. We're contractually obligated to use eventbrite, but really don't want to use their ipad app so I'd like to programatically add an at-the-door cash ticket but don't see how to do that.
Anyone have ideas?
thanks!
--Derek
Currently, this use-case is not available via the API.
You can manually add attendees using Eventbrite's web-based interface.
If you really needed to automate that process, you could try scripting something with selenium / webdriver.
(Example: start services.msc, click 2 times on any service)
If it is possible an example on delphi, please
David is probably right ;-) In any case, whatever you want to do with services programatically will probably involve the use of the Service Control Manager API
http://msdn.microsoft.com/en-us/library/ms684323%28v=vs.85%29.aspx
and here's another SO question that might help you further
How can I disable a service via Delphi?
and here's some old code that gives you a head start
http://www.swissdelphicenter.ch/torry/showcode.php?id=1322
As far as I am aware, there is no official programmatic way to show the services control panel UI to the user.
Consequently I believe that you must look for another solution.