Howdy there folks,

I have the following text/plain output from a CGI script:

active_users_count|3|3|
active_users_5mins|0|0|
active_users_30mins|1|1|
active_users_60mins|1|1|

I'm configuring the curl plugin to read them:

LoadPlugin curl
<Plugin curl>
<Page "my_users">
  URL "http://localhost/cgi-script";
  <Match>
    Regex "active_users_count\|([0-9]+)"
    DSType "GaugeLast"
    Type "my_users"
    Instance "active_users_count"
  </Match>
</Page>
</Plugin>

In types.db, I've got:
my_users value:GAUGE:0:65535

Am I misunderstanding the amount of escaping I need to do for a vertical pipe in my configuration? Is the Regex match supposed to be multiline?

I've tried to match on "^active_users_count\|([0-9]+)$" too.

Thanks in advance,
--
Martin B. Smith
[email protected] - (352) 273-1374
CNS/Open Systems Group
University of Florida

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature

_______________________________________________
collectd mailing list
[email protected]
http://mailman.verplant.org/listinfo/collectd

Reply via email to