Class JenkinsLogsFlare
- java.lang.Object
-
- org.datadog.jenkins.plugins.datadog.flare.JenkinsLogsFlare
-
- All Implemented Interfaces:
FlareContributor
@Extension public class JenkinsLogsFlare extends Object implements FlareContributor
This flare writes only the last small part of the Jenkins controller logs that is still available in the in-memory ring-buffer. The full logs that are stored on disk are not written intentionally. They're available in the support bundles generated with Cloudbees or Support Core plugins.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.datadog.jenkins.plugins.datadog.flare.FlareContributor
FlareContributor.ORDER
-
-
Constructor Summary
Constructors Constructor Description JenkinsLogsFlare()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
String
getFilename()
int
order()
void
writeFileContents(OutputStream out)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.datadog.jenkins.plugins.datadog.flare.FlareContributor
isEnabledByDefault
-
-
-
-
Method Detail
-
order
public int order()
- Specified by:
order
in interfaceFlareContributor
-
getDescription
public String getDescription()
- Specified by:
getDescription
in interfaceFlareContributor
-
getFilename
public String getFilename()
- Specified by:
getFilename
in interfaceFlareContributor
-
writeFileContents
public void writeFileContents(OutputStream out)
- Specified by:
writeFileContents
in interfaceFlareContributor
-
-