16 lines
318 B
JavaScript
16 lines
318 B
JavaScript
/**
|
|
* picks the correct format for a graphite entry
|
|
* @param {string} [type='graphite'] ['statsd', 'graphite']
|
|
* @return {string} The string template
|
|
*/
|
|
export function formatEntry(type) {
|
|
switch (type) {
|
|
case 'statsd': {
|
|
return '%s:%s|ms';
|
|
}
|
|
default: {
|
|
return '%s %s %s';
|
|
}
|
|
}
|
|
}
|