I’ve included just the simple stub section with apply function in the configuration file and upon reading configuration I get an Invalid TOML error always at the last line even if it is a blank line. This only happens when I include the starlark processor.
ex:
[[processors.starlark]]
source = ‘’’
def apply(metric):
return metric
It’s like it is treating the embedded script as TOML which it isn’t obviously, its python(ie)
Thanks
Ugh. I think I may have just answered my own question. In much of the documentation it always shows the source = ‘’’ at the head but doesn’t show the trailing ‘’‘, makes perfect sense now cause it is an embedded script. It’s just that many of the examples shows the former ‘’’ and not the latter ‘’’ and take for granted everyone knows that it is escaping the internal script. Let’s see if this works
Can you please link to one of these examples missing the trailing quotes?
Most of the examples here do not include it:
I think the only example that does include the termination is the namepass example that demonstrates having two scripts. Because it has two scripts the top script is terminated, but the bottom script termination is cut off.
Thanks I’ll follow up with marketing to update that blog post. That is definitely misleading as-is.