Git Product home page Git Product logo

rocksteady's People

rocksteady's Issues

AMQP metrics format does not match graphite

I'd like to send just one set of stats to an AMQP exchange for consumption by 
both rocksteady and graphite -- but they seem to expect slightly different 
formats.

Rocksteady expects a message to have: "metric_name value timestamp"

graphite expects the message to have metric_name as the routing key, and the 
message just: "value timestamp"

There could be a config option to use the routing key as metric name, and only 
expect "value timestamp" in the payload.

Original issue reported on code.google.com by petefbsd on 19 Jan 2011 at 6:50

holt-winters algorithm

Do you have example rules/esper plugins to apply the holt-winters prediction 
algorithm in an EPL statement?

Original issue reported on code.google.com by petefbsd on 27 May 2011 at 3:46

Spring dependencies are not correctly configure in pom

Spring dependencies are not correctly configured in pom

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>org.springframework.core</artifactId>
    <version>${spring.version}</version>
</dependency>

Shoud be (notice: artifactId)

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-core</artifactId>
    <version>${spring.version}</version>
</dependency>

Original issue reported on code.google.com by [email protected] on 29 Apr 2011 at 8:24

Testing framework

It would be great to have a testing framework for epl statements. Sample data 
and then what listeners are expected to fire. Any thoughts on this?

Original issue reported on code.google.com by petefbsd on 21 Jan 2011 at 6:38

in MessageManager.java exchangeDeclare pass wrong args

What steps will reproduce the problem?
1.run rocksteady
2.rabbitmqctl list_exchanges name  durable auto_delete

What is the expected output? What do you see instead?
in classes/META-INF/rocksteady.properties
rabbitDurable=true
rabbitAutoDelete=false
rabbitExchangeType=topic
while 
rabbitmqctl list_exchanges  durable auto_delete
always return  false false


What version of the product are you using? On what operating system?

1.0.0,debian 6,
Please provide any additional information below.

mqChannel.exchangeDeclare(rabbitExchange, rabbitExchangeType, false, 
rabbitDurable, rabbitAutoDelete, null);

please read
http://www.rabbitmq.com/javadoc/com/rabbitmq/client/Channel.html#exchangeDeclare
(java.lang.String, java.lang.String, boolean, boolean, boolean, java.util.Map)




Index: src/main/java/com/admob/rocksteady/router/MessageManager.java
===================================================================
--- src/main/java/com/admob/rocksteady/router/MessageManager.java       
(revision 118)
+++ src/main/java/com/admob/rocksteady/router/MessageManager.java       
(working copy)
@@ -169,7 +169,7 @@
       mqChannel = mqConnection.createChannel();
       // Now we have connection
       //mqChannel.exchangeDelete(rabbitExchange);
-      mqChannel.exchangeDeclare(rabbitExchange, rabbitExchangeType, false, 
rabbitDurable, rabbitAutoDelete, null);
+      mqChannel.exchangeDeclare(rabbitExchange, rabbitExchangeType, 
rabbitDurable, rabbitAutoDelete, false, null);

       // Add a random string to queue name so each instance of rocksteady will
       // have its own queue

Original issue reported on code.google.com by [email protected] on 8 Jun 2012 at 10:40

RPM Error during mvn package on Ubuntu systems

On Ubuntu systems the rpm command fails (Obviously) and the build does not 
succeed. Probably need to make the build platform agnostic?


INFO] [rpm:rpm {execution: default}]
[WARNING] /bin/sh: rpm: not found
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] RPM query for default vendor returned: '127' executing '/bin/sh -c rpm 
-E '%{_host_vendor}''
[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------

Original issue reported on code.google.com by [email protected] on 29 Apr 2011 at 8:33

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.