Liking cljdoc? Tell your friends :D

com.brunobonacci.mulog.publishers.mbean-sampler


DEFAULT-CONFIGclj

source

mbean-sampler-publisherclj

(mbean-sampler-publisher {:keys [transform] :as config})
source

mbeans-sampleclj

(mbeans-sample pattern)

Returns list of MBeans that match the given pattern. For each MBean it will returns the current value of each attribute/property.

  • *:type=Foo,name=Bar to match names in any domain whose exact set of keys is type=Foo,name=Bar.
  • d:type=Foo,name=Bar,* to match names in the domain d that have the keys type=Foo,name=Bar plus zero or more other keys.
  • *:type=Foo,name=Bar,* to match names in any domain that has the keys type=Foo,name=Bar plus zero or more other keys.
  • d:type=F?o,name=Bar will match e.g. d:type=Foo,name=Bar and d:type=Fro,name=Bar.
  • d:type=F*o,name=Bar will match e.g. d:type=Fo,name=Bar and d:type=Frodo,name=Bar.
  • d:type=Foo,name="B*" will match e.g. d:type=Foo,name="Bling". Wildcards are recognized even inside quotes, and like other special characters can be escaped with \
Returns list of MBeans that match the given `pattern`. For each
MBean it will returns the current value of each attribute/property.

  - `*:type=Foo,name=Bar` to match names in any domain whose exact
     set of keys is `type=Foo,name=Bar`.
  - `d:type=Foo,name=Bar,*` to match names in the domain d that
     have the keys `type=Foo,name=Bar` plus zero or more other keys.
  - `*:type=Foo,name=Bar,*` to match names in any domain that has
     the keys `type=Foo,name=Bar` plus zero or more other keys.
  - `d:type=F?o,name=Bar` will match e.g. `d:type=Foo,name=Bar` and
    `d:type=Fro,name=Bar`.
  - `d:type=F*o,name=Bar` will match e.g. `d:type=Fo,name=Bar` and
    `d:type=Frodo,name=Bar`.
  - `d:type=Foo,name="B*"` will match
     e.g. `d:type=Foo,name="Bling"`. Wildcards are recognized even inside
     quotes, and like other special characters can be escaped with \
sourceraw docstring

sample-mbeansclj

(sample-mbeans mbeans-patterns transform-samples)
source

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close