mirror of
https://github.com/weaveworks/scope.git
synced 2026-02-14 10:00:13 +00:00
This dependency makes it harder to see the structure of the program, and sometimes complicates compilation. Mostly just changing the source of strings that are already exported from the report package. A few new strings have to be moved there, plus the function `IsPauseImageName()`.
17 lines
388 B
Go
17 lines
388 B
Go
package report
|
|
|
|
// constants used in node metadata values
|
|
const (
|
|
DockerLabelPrefix = "docker_label_"
|
|
DockerImageLabelPrefix = "docker_image_label_"
|
|
|
|
StateCreated = "created"
|
|
StateDead = "dead"
|
|
StateExited = "exited"
|
|
StatePaused = "paused"
|
|
StateRestarting = "restarting"
|
|
StateRunning = "running"
|
|
StateDeleted = "deleted"
|
|
StateFailed = "Failed"
|
|
)
|