Sift | Docs

panel_configuration

Protocol buffer definition for panel_configuration

sift/panel_configurations/v1/panel_configuration.proto

ChannelConfigurations

FieldTypeLabelDescription
namestring
typePlottedChannelType
colorstring
channel_settingsgoogle.protobuf.Struct
bit_field_indexint32optionalbitfield
bit_field_elementsift.common.type.v1.ChannelBitFieldElementoptional
expressionstringoptionaltemporary calculated channel
expression_channel_referencesstringrepeated

CreatePanelConfigurationRequest

FieldTypeLabelDescription
namestring
panel_typePanelType
channel_configurationsChannelConfigurationsrepeated
chart_settingsgoogle.protobuf.Structoptional

CreatePanelConfigurationResponse

FieldTypeLabelDescription
panel_configurationPanelConfiguration

GetPanelConfigurationRequest

FieldTypeLabelDescription
panel_configuration_idstring

GetPanelConfigurationResponse

FieldTypeLabelDescription
panel_configurationPanelConfiguration

ListPanelConfigurationsRequest

FieldTypeLabelDescription
page_sizeuint32The maximum number of panel configurations to return. The service may return fewer than this value. If unspecified, at most 50 panel configurations will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
page_tokenstringA page token, received from a previous ListPanelConfigurations call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListPanelConfigurations must match the call that provided the page token.
filterstringA Common Expression Language (CEL) filter string Available fields to filter by are 'name', 'created_date', and 'modified_date'. For further information about how to use CELs, please refer to this guide.
order_bystringHow to order the retrieved panel configurations. Formatted as a comma-separated string i.e. "FIELD_NAME[ desc],...". Available fields to order_by are name. If left empty, items are ordered by name in ascending order (alphabetical). For more information about the format of this field, read this Example: "name"

ListPanelConfigurationsResponse

FieldTypeLabelDescription
panel_configurationsPanelConfigurationrepeated
next_page_tokenstringA token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.

PanelConfiguration

FieldTypeLabelDescription
panel_configuration_idstring
version_idstring
versionuint32
change_messagestring
namestring
panel_typePanelType
channel_configurationsChannelConfigurationsrepeated
chart_settingsgoogle.protobuf.Structoptional
created_dategoogle.protobuf.Timestamp
modified_dategoogle.protobuf.Timestamp
archived_dategoogle.protobuf.Timestamp
created_by_user_idstring
modified_by_user_idstring

UpdatePanelConfigurationRequest

The request for a call to PanelConfigurationService_UpdatePanelConfiguration to update a panel configuration. Updating a panel configuration creates a new version of the panel configuration, leaving the previous untouched. If no update is deemed necessary, then the the current version is returned. To archive panel configuration, specify archived_date in the update mask as well as a non-null value for archived_date in the panel_configuration object. To unarchive a panel configuration, specify archived_date in the update mask and a null value for archived_date in the panel_configuration object.

FieldTypeLabelDescription
panel_configurationPanelConfigurationThe panel configuration to update.
update_maskgoogle.protobuf.FieldMaskThe list of fields to be updated. The fields available to be updated are name, panel_type, channel_configurations, and chart_settings.

UpdatePanelConfigurationResponse

FieldTypeLabelDescription
panel_configurationPanelConfiguration

PanelType

NameNumberDescription
PANEL_TYPE_UNSPECIFIED0
PANEL_TYPE_TIMESERIES1
PANEL_TYPE_TABLE2
PANEL_TYPE_FFT3
PANEL_TYPE_GEO_MAP4
PANEL_TYPE_SCATTER_PLOT5
PANEL_TYPE_FILE_VIEWER6
PANEL_TYPE_HISTOGRAM7

PlottedChannelType

NameNumberDescription
PLOTTED_CHANNEL_TYPE_UNSPECIFIED0
PLOTTED_CHANNEL_TYPE_REGULAR1
PLOTTED_CHANNEL_TYPE_CALCULATED_CHANNEL2
PLOTTED_CHANNEL_TYPE_BIT_FIELD_ELEMENT3
PLOTTED_CHANNEL_TYPE_ENUM4

PanelConfigurationService

Method NameRequest TypeResponse TypeDescription
GetPanelConfigurationGetPanelConfigurationRequestGetPanelConfigurationResponseRetrieves a panel configuration.
ListPanelConfigurationsListPanelConfigurationsRequestListPanelConfigurationsResponseRetrieves panel configurations using an optional filter.
CreatePanelConfigurationCreatePanelConfigurationRequestCreatePanelConfigurationResponseCreates a panel configuration.
UpdatePanelConfigurationUpdatePanelConfigurationRequestUpdatePanelConfigurationResponseUpdates an existing panel configuration using using the list of fields specified in update_mask.