blob: 820d68dcb33e44a0db2aa240754fea55106c3623 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.eagle.topology.entity;
import org.apache.eagle.log.entity.meta.*;
import org.apache.eagle.topology.TopologyConstants;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
@Table("hadoop_topology")
@ColumnFamily("f")
@Prefix("journalnodestatus")
@Service(TopologyConstants.JN_INSTANCE_SERVICE_NAME)
@TimeSeries(false)
@Tags( {TopologyConstants.SITE_TAG, TopologyConstants.HOSTNAME_TAG, TopologyConstants.RACK_TAG, TopologyConstants.ROLE_TAG})
public class JournalNodeServiceAPIEntity extends TopologyBaseAPIEntity {
@Column("a")
private long writtenTxidDiff;
@Column("b")
private String status;
@Column("c")
private long lastUpdateTime;
public long getLastUpdateTime() {
return lastUpdateTime;
}
public void setLastUpdateTime(long lastUpdateTime) {
this.lastUpdateTime = lastUpdateTime;
valueChanged("lastUpdateTime");
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
valueChanged("status");
}
public long getWrittenTxidDiff() {
return writtenTxidDiff;
}
public void setWrittenTxidDiff(long writtenTxidDiff) {
this.writtenTxidDiff = writtenTxidDiff;
valueChanged("writtenTxidDiff");
}
}