eigengo / monitor

Library for monitoring the Typesafe stack-based applications.
Apache License 2.0
127 stars 24 forks source link

Unable to filter the event actor as expected #106

Open richiesgr opened 10 years ago

richiesgr commented 10 years ago

Hi

I'm trying to use this package because we use datadog here. But I'm confronted to this problem. Datadog complain on the very high number of tag associated to each event and close this dashboard. I'm tring to play with the agent configuration without any success here ! here is an example org.eigengo.monitor.agent { output { class: "org.eigengo.monitor.output.statsd.StatsdCounterInterface" }

akka {
    includeRoutees: false
    included : ["akka:*.com.inneractive.exchange.bootstraps.AdRequestBootstraps"]
    excludeAllNotIncluded: true
}

}

I just want to send event for 1 particular actor that all nothing working. the filter I've tried like this: org.eigengo.monitor.agent { output { class: "org.eigengo.monitor.output.statsd.StatsdCounterInterface" }

akka {
    includeRoutees: false
    included : ["akka://myActorSystem/path1/AdRequestBootstraps"]
    excludeAllNotIncluded: true
}

}

Not working. there is no filter at all or all pass anyway Please help if you still support this project