Skip to content

Commit

Permalink
Merge pull request #1792 from jrha/cleanup-metaconfig-carbon-relay-ng
Browse files Browse the repository at this point in the history
ncm-metaconfig: carbon-relay-ng: Fix wrapping and indentation in pan
  • Loading branch information
jrha authored Dec 16, 2024
2 parents 58ba0f6 + a68cb88 commit 9ef7452
Showing 1 changed file with 12 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,39 +21,41 @@ prefix "/software/components/metaconfig/services/{/etc/carbon-relay-ng.ini}/cont
'opts', dict(
'spool', true,
'pickle', false,
),
)),
);
),
)),
);
'init/2/addRoute' = dict(
'type', 'sendAllMatch',
'key', 'carbon-tagger',
'opts', dict(
'sub', '=',
),
),
'dest', list(dict(
'addr', '127.0.0.1:2006',
)),
);
)),
);
'init/3/addRoute' = dict(
'type', 'sendFirstMatch',
'key', 'analytics',
'opts', dict(
'regex', '(Err/s|wait_time|logger)',
),
),
'dest', list(
dict(
'addr', 'graphite.prod:2003',
'opts', dict(
'prefix', 'prod.',
'spool', true,
'pickle', true,
)),
),
),
dict(
'addr', 'graphite.staging:2003',
'opts', dict(
'prefix', 'staging.',
'spool', true,
'pickle', true,
)),
),
),
);
),
);

0 comments on commit 9ef7452

Please sign in to comment.