-
|
Hi! I would like to as for a clarification for this part in the documentation https://github.com/qetza/replacetokens-task?tab=readme-ov-file#datatelemetry "the outputs (defaults, files, replaced, tokens and transforms)" What are these? Could you provide an example of the sent telemetry data? |
Beta Was this translation helpful? Give feedback.
Answered by
qetza
Nov 21, 2025
Replies: 1 comment
-
|
Hi @aalho, The task has some outputs which contains statistics about it execution: https://github.com/qetza/replacetokens-task?tab=readme-ov-file#output These numbers are part of the telemetry data. Here's an example of telemetry data: [
{
"eventType": "TokensReplaced",
"application": "replacetokens-task",
"version": "6.0.0",
"account": "494d0aad9d06c4ddb51d5300620122ce55366a9382b3cc2835ed5f0e2e67b4d0",
"pipeline": "b98ed03d3eec376dcc015365c1a944e3ebbcc33d30e3261af3f4e4abb107aa82",
"host": "cloud",
"os": "Windows",
"sources": 3,
"add-bom": false,
"case-insenstive-paths": true,
"encoding": "auto",
"escape": "auto",
"if-no-files-found": "ignore",
"include-dot-paths": true,
"log-level": "info",
"missing-var-action": "none",
"missing-var-default": "",
"missing-var-log": "warn",
"recursive": false,
"separator": ".",
"token-pattern": "default",
"transforms": false,
"transforms-prefix": "(",
"transforms-suffix": ")",
"use-additional-variables-only": false,
"variable-files": 0,
"variable-envs": 0,
"inline-variables": 0,
"output-defaults": 1,
"output-files": 2,
"output-replaced": 3,
"output-tokens": 4,
"output-transforms": 5,
"result": "success",
"duration": 0.1
}
] |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
aalho
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @aalho,
The task has some outputs which contains statistics about it execution: https://github.com/qetza/replacetokens-task?tab=readme-ov-file#output
These numbers are part of the telemetry data.
Here's an example of telemetry data:
[ { "eventType": "TokensReplaced", "application": "replacetokens-task", "version": "6.0.0", "account": "494d0aad9d06c4ddb51d5300620122ce55366a9382b3cc2835ed5f0e2e67b4d0", "pipeline": "b98ed03d3eec376dcc015365c1a944e3ebbcc33d30e3261af3f4e4abb107aa82", "host": "cloud", "os": "Windows", "sources": 3, "add-bom": false, "case-insenstive-paths": true, "encoding": "auto", "escape": "auto", "if-no-files-found": "i…